- use start_record_timestamp, file, bridge to compare if 3 start events are eql?

This commit is contained in:
Richard Alam 2011-09-02 18:14:44 +00:00
parent 9921f9ef42
commit b59fc8d3aa

View File

@ -286,13 +286,9 @@ module BigBlueButton
def eql?(other) def eql?(other)
(start_record_timestamp == other.start_record_timestamp) and (start_record_timestamp == other.start_record_timestamp) and
(stop_event_timestamp == other.stop_event_timestamp) and
(file == other.file) and (file == other.file) and
(bridge == other.bridge) and (bridge == other.bridge)
(start_event_timestamp == other.start_event_timestamp)
end end
end end
end end