Fix stupid equals error

This commit is contained in:
Klaus Reimer 2013-04-16 19:13:16 +02:00
parent e0fa456708
commit aefbdab72d

View File

@ -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