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,17 +27,17 @@ public class Test {
|
||||
boolean dropping = true;
|
||||
OUTER:
|
||||
for (String s : data) {
|
||||
for (String s1 : Arrays.asList(s, s + s)) {
|
||||
if (s1.isEmpty()) {
|
||||
for (String string : Arrays.asList(s, s + s)) {
|
||||
if (string.isEmpty()) {
|
||||
break OUTER;
|
||||
}
|
||||
if (dropping) {
|
||||
if (s1.length() < 3) {
|
||||
if (string.length() < 3) {
|
||||
continue;
|
||||
}
|
||||
dropping = false;
|
||||
}
|
||||
xyz.add(s1);
|
||||
xyz.add(string);
|
||||
}
|
||||
}
|
||||
System.out.println(xyz);
|
||||
|
||||
Reference in New Issue
Block a user