Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static boolean isEquals(final Object o, final Object o2) {
if (o != o2) {
if (o != null) {
if (o.equals(o2)) {
return true;
}
}
return false;
}
return true;
}
}