MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / equals

Method equals

src/main/java/field/utility/Dict.java:514–524  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

512 }
513
514 @Override
515 public boolean equals(Object obj) {
516 if (this == obj) return true;
517 if (obj == null) return false;
518 if (getClass() != obj.getClass()) return false;
519 final Dict other = (Dict) obj;
520 if (dictionary == null) {
521 if (other.dictionary != null) return false;
522 } else if (!dictionary.equals(other.dictionary)) return false;
523 return true;
524 }
525
526
527 public Map<Prop, Object> getMap() {

Callers 4

containsSuffixMethod · 0.45
equalsMethod · 0.45
_getCallerClassMethod · 0.45
removeValueMethod · 0.45

Calls 1

getMethod · 0.65

Tested by

no test coverage detected