Fix stupid equals error
This commit is contained in:
parent
e0fa456708
commit
aefbdab72d
@ -61,7 +61,7 @@ public final class DeviceHandle
|
||||
if (this == obj) return true;
|
||||
if (obj == null || getClass() != obj.getClass()) return false;
|
||||
final DeviceHandle other = (DeviceHandle) obj;
|
||||
return this.handlePointer != other.handlePointer;
|
||||
return this.handlePointer == other.handlePointer;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Loading…
Reference in New Issue
Block a user