Conditions | 2 |
Total Lines | 4 |
Lines | 4 |
Ratio | 100 % |
Changes | 0 |
1 | # frozen_string_literal: true |
||
32 | View Code Duplication | def eql?(other) |
|
|
|||
33 | return false unless other.is_a?(self.class) |
||
34 | @owner == other.owner && @id == other.id |
||
35 | end |
||
36 | |||
48 |