MCPcopy Create free account
hub / github.com/ReadyTalk/avian / equal

Method equal

classpath/java/util/Arrays.java:141–143  ·  view source on GitHub ↗
(Object a, Object b)

Source from the content-addressed store, hash-verified

139 }
140
141 private static boolean equal(Object a, Object b) {
142 return (a == null && b == null) || (a != null && a.equals(b));
143 }
144
145 public static void sort(Object[] array) {
146 sort(array, new Comparator() {

Callers 3

equalsMethod · 0.95
indexOfMethod · 0.95
lastIndexOfMethod · 0.95

Calls 1

equalsMethod · 0.65

Tested by

no test coverage detected