Skip to content
Permalink
6800-specs-add
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
16 lines (12 sloc) 234 Bytes
/* ###
* IP: Public Domain
*/
package mobiledevices.dmg.ghidra;
public class GSystemUtilities {
public static boolean isEqual(Object o1, Object o2) {
if (o1 == null) {
return (o2 == null);
}
return o1.equals(o2);
}
}