MCPcopy Index your code
hub / github.com/droidefense/engine / equals

Method equals

core/src/main/java/droidefense/util/SSDeepHash.java:199–210  ·  view source on GitHub ↗
(Object that)

Source from the content-addressed store, hash-verified

197 }
198
199 @Override
200 public boolean equals(Object that) {
201 if (this == that) {
202 return true;
203 }
204
205 if (!(that instanceof SSDeepHash)) {
206 return false;
207 }
208 SSDeepHash other = (SSDeepHash) that;
209 return toString().equals(other.toString());
210 }
211
212 /**
213 * Return a number between 0 and 100 inclusive where 0 is a terrible match and 100 is a great match.

Callers 15

bFunction · 0.45
ckeditor.jsFile · 0.45
sFunction · 0.45
aFunction · 0.45
cFunction · 0.45
dFunction · 0.45
wFunction · 0.45
kFunction · 0.45
eFunction · 0.45
pFunction · 0.45
jFunction · 0.45
gFunction · 0.45

Calls 1

toStringMethod · 0.95

Tested by

no test coverage detected