MCPcopy Index your code
hub / github.com/wyouflf/xUtils3 / equals

Method equals

xutils/src/main/java/org/xutils/image/MemCacheKey.java:15–25  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

13 }
14
15 @Override
16 public boolean equals(Object o) {
17 if (this == o) return true;
18 if (o == null || getClass() != o.getClass()) return false;
19
20 MemCacheKey that = (MemCacheKey) o;
21
22 if (!url.equals(that.url)) return false;
23 return options.equals(that.options);
24
25 }
26
27 @Override
28 public int hashCode() {

Callers 2

doBindMethod · 0.95
isGifMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected