findbugs all over

This commit is contained in:
zzz
2017-08-09 21:24:02 +00:00
parent 24414845d0
commit 3d385228f0
14 changed files with 15 additions and 16 deletions

View File

@@ -245,7 +245,7 @@ public class RandomArt {
if (mod != 0) {
//base += mod * 16;
//base += mod * 16 * 256;
base += mod * 5 * 256 * 256;
base += mod * (5 * 256 * 256L);
}
if (base > 0xffffff || base < 0)
base &= 0xffffff;