Conditions | 2 |
Total Lines | 4 |
Lines | 4 |
Ratio | 100 % |
Changes | 0 |
1 | # frozen_string_literal: true |
||
58 | View Code Duplication | def eql?(other) |
|
|
|||
59 | return false unless other.is_a?(self.class) |
||
60 | @id == other.id && @owner == other.owner |
||
61 | end |
||
62 | |||
71 |