blob: d6167bf2b6040bb9475d2fffe5d9ddeb7fb824e0 [file] [log] [blame]
public class DeepEquals {
public static int deepEquals(Object o1) {
if (o1 instanceof boolean[]) {
return 1;
}
if (o1 instanceof byte[]) {
return 2;
}
return 3;
}
}