From b59fc8d3aa7e92f0db657d69dd78d493cb4b7913 Mon Sep 17 00:00:00 2001 From: Richard Alam Date: Fri, 2 Sep 2011 18:14:44 +0000 Subject: [PATCH] - use start_record_timestamp, file, bridge to compare if 3 start events are eql? --- .../core/lib/recordandplayback/generators/audio.rb | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/record-and-playback/core/lib/recordandplayback/generators/audio.rb b/record-and-playback/core/lib/recordandplayback/generators/audio.rb index 42c6e7e164..bbf3026ff1 100755 --- a/record-and-playback/core/lib/recordandplayback/generators/audio.rb +++ b/record-and-playback/core/lib/recordandplayback/generators/audio.rb @@ -286,13 +286,9 @@ module BigBlueButton def eql?(other) (start_record_timestamp == other.start_record_timestamp) and - (stop_event_timestamp == other.stop_event_timestamp) and (file == other.file) and - (bridge == other.bridge) and - (start_event_timestamp == other.start_event_timestamp) + (bridge == other.bridge) end - - end end