Fix checkstyle

This commit is contained in:
Norman Maurer 2013-03-05 07:06:52 +01:00
parent 7e17f71b30
commit faaff91dd0

View File

@ -166,7 +166,7 @@ final class PlatformDependent0 {
if (UNALIGNED) {
return UNSAFE.getShort(address);
} else {
return (short)(getByte(address) << 8 | getByte(address + 1) & 0xff);
return (short) (getByte(address) << 8 | getByte(address + 1) & 0xff);
}
}