Java: ignore "as" and "to" prefixes to generate better variable names (IJP-1469)

GitOrigin-RevId: 12cde9892bece40321b4655e7d32b75bd43748e8
This commit is contained in:
Bas Leijdekkers
2023-01-26 00:04:15 +00:00
committed by intellij-monorepo-bot
parent d522e0a3d9
commit 3c556d8fe0
15 changed files with 38 additions and 35 deletions
@@ -77,7 +77,7 @@ class Test {
void flatMapsWithSameParamName(String param0) {
if (param0 == null) throw new NullPointerException();
String s = "foo";
String toLowerCase = ("foo").toLowerCase();
String lowerCase = ("foo").toLowerCase();
String bar = "bar";
}