mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 02:09:59 +07:00
Java: better name suggestions for boxed types, filter out common bad names and add special cases for common methods
GitOrigin-RevId: 2bf3977d2873bd133ac6acb85df54aece740f428
This commit is contained in:
committed by
intellij-monorepo-bot
parent
f0be15b132
commit
9a44d02318
@@ -27,8 +27,8 @@ public class Main {
|
||||
Integer acc = 0;
|
||||
SplittableRandom splittableRandom = new SplittableRandom(1);
|
||||
for (long count = 100; count > 0; count--) {
|
||||
Integer integer = 500;
|
||||
acc = splittableRandom.nextInt(acc, integer);
|
||||
Integer i = 500;
|
||||
acc = splittableRandom.nextInt(acc, i);
|
||||
}
|
||||
int n1 = acc;
|
||||
System.out.println(n1);
|
||||
|
||||
Reference in New Issue
Block a user