MCPcopy Index your code
hub / github.com/cSploit/android / equals

Method equals

cSploit/src/org/csploit/android/net/Target.java:232–237  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

230 }
231
232 public boolean equals(Object o) {
233 if(o == null || o.getClass() != this.getClass())
234 return false;
235 Exploit other = (Exploit) o;
236 return id == null ? other.id == null : id.equals(other.id);
237 }
238
239 public void addReference(Reference ref) {
240 synchronized (references) {

Callers

nothing calls this directly

Calls 1

equalsMethod · 0.45

Tested by

no test coverage detected