提交 034631d5 authored 作者: LaughingMan's avatar LaughingMan

Save two lines

上级 3d9a7d91
......@@ -229,8 +229,7 @@ public class MathUtils {
x |= x >> 4;
x |= x >> 8;
x |= x >> 16;
x++;
return x;
return ++x;
}
/**
......@@ -251,8 +250,7 @@ public class MathUtils {
x |= x >> 8;
x |= x >> 16;
x |= x >> 32;
x++;
return x;
return ++x;
}
/**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论