MCPcopy Create free account
hub / github.com/M66B/FairEmail / equals

Method equals

app/src/main/java/eu/faircode/email/EntityLog.java:251–264  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

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}

Callers 15

areContentsTheSameMethod · 0.95
onExecuteMethod · 0.45
areItemsTheSameMethod · 0.45
onCreateMethod · 0.45
onResumeMethod · 0.45
checkAuthenticationMethod · 0.45
processStreamsMethod · 0.45
detectMethod · 0.45
onCreateMethod · 0.45
onChangedMethod · 0.45
delegateMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected