1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00
cs2j/CS2JLibrary/src/CS2JNet/System/ObjectSupport.java

12 lines
207 B
Java

package CS2JNet.System;
public class ObjectSupport {
public static boolean Equals(Object obj1, Object obj2) {
if (obj1 == null) {
return obj2 == null;
} else {
return obj1.equals(obj2);
}
}
}