more gc fixes
This commit is contained in:
parent
223c4d7bd1
commit
4dc53777b4
1 changed files with 4 additions and 0 deletions
|
@ -2157,6 +2157,10 @@ class ISBPLObject implements ISBPLUsable {
|
|||
if(this == o) return true;
|
||||
if(!(o instanceof ISBPLObject)) return false;
|
||||
ISBPLObject object = (ISBPLObject) o;
|
||||
if(this.type == null)
|
||||
return false;
|
||||
if(object.type == null)
|
||||
return false;
|
||||
if(!this.type.equals(object.type))
|
||||
return false;
|
||||
if(this.object == object.object)
|
||||
|
|
Loading…
Add table
Reference in a new issue