Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
16 lines (12 sloc)
234 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ### | |
* 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); | |
} | |
} |