Code cleanup

This commit is contained in:
Klaus Reimer 2013-04-17 20:47:03 +02:00
parent 61ab3be94d
commit fc4f7ced60
2 changed files with 4 additions and 2 deletions

View File

@ -52,7 +52,8 @@ public final class DeviceHandle
@Override
public int hashCode()
{
return new HashCodeBuilder().append(this.deviceHandlePointer).toHashCode();
return new HashCodeBuilder().append(this.deviceHandlePointer)
.toHashCode();
}
@Override

View File

@ -76,7 +76,8 @@ public final class DeviceList implements Iterable<Device>
@Override
public int hashCode()
{
return new HashCodeBuilder().append(this.deviceListPointer).toHashCode();
return new HashCodeBuilder().append(this.deviceListPointer)
.toHashCode();
}
@Override