(Object obj)
| 249 | } |
| 250 | |
| 251 | @Override |
| 252 | public boolean equals(Object obj) { |
| 253 | if (obj instanceof EntityLog) { |
| 254 | EntityLog other = (EntityLog) obj; |
| 255 | return (this.id.equals(other.id) && |
| 256 | this.time.equals(other.time) && |
| 257 | this.type.equals(other.type) && |
| 258 | Objects.equals(this.account, other.account) && |
| 259 | Objects.equals(this.folder, other.folder) && |
| 260 | Objects.equals(this.message, other.message) && |
| 261 | this.data.equals(other.data)); |
| 262 | } else |
| 263 | return false; |
| 264 | } |
| 265 | } |
no outgoing calls
no test coverage detected