(Object o)
| 112 | } |
| 113 | |
| 114 | @Override |
| 115 | public boolean equals(Object o) { |
| 116 | if (!(o instanceof Slot)) { |
| 117 | return false; |
| 118 | } |
| 119 | |
| 120 | Slot that = (Slot) o; |
| 121 | return Objects.equals(this.id, that.id) |
| 122 | && Objects.equals(this.stereotype, that.stereotype) |
| 123 | && Objects.equals(this.session, that.session) |
| 124 | && Objects.equals(this.lastStarted.toEpochMilli(), that.lastStarted.toEpochMilli()); |
| 125 | } |
| 126 | |
| 127 | @Override |
| 128 | public int hashCode() { |
no outgoing calls
no test coverage detected