提交 f54bc593 authored 作者: Thomas Mueller's avatar Thomas Mueller

Clearer casting

上级 a944cc8b
......@@ -92,7 +92,7 @@ public class Utils {
* @return the value
*/
public static long readLong(byte[] buff, int pos) {
return ((long) (readInt(buff, pos)) << 32) + (readInt(buff, pos + 4) & 0xffffffffL);
return (((long) readInt(buff, pos)) << 32) + (readInt(buff, pos + 4) & 0xffffffffL);
}
/**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论