* commit '9f141fbb786c07ff56324717e1e0747a3cabf23b': Fix null check for BaseObj.equals.
This commit is contained in:
@@ -181,6 +181,10 @@ public class BaseObj {
|
||||
if (this == obj)
|
||||
return true;
|
||||
|
||||
if (obj == null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (getClass() != obj.getClass()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user