mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
12 lines
207 B
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);
|
|
}
|
|
}
|
|
}
|