MCPcopy Create free account
hub / github.com/adjust/android_sdk / equalObject

Method equalObject

Adjust/sdk-core/src/main/java/com/adjust/sdk/Util.java:342–347  ·  view source on GitHub ↗
(Object first, Object second)

Source from the content-addressed store, hash-verified

340 }
341
342 public static boolean equalObject(Object first, Object second) {
343 if (first == null || second == null) {
344 return first == null && second == null;
345 }
346 return first.equals(second);
347 }
348
349 public static boolean equalsDouble(Double first, Double second) {
350 if (first == null || second == null) {

Callers 9

equalsMethod · 0.95
equalsMethod · 0.95
equalsMethod · 0.95
equalsMethod · 0.95
equalStringMethod · 0.95
equalEnumMethod · 0.95
equalLongMethod · 0.95
equalIntMethod · 0.95
equalBooleanMethod · 0.95

Calls 1

equalsMethod · 0.45

Tested by

no test coverage detected