Remove unnecessary downcasting

GitOrigin-RevId: b91110977db6e5b08d9f4aaffa8496d305d698e2
This commit is contained in:
Leonid Bushuev
2019-05-03 01:40:23 +03:00
committed by intellij-monorepo-bot
parent 2d9369d983
commit 970dc0fe32
1065 changed files with 11315 additions and 13214 deletions
@@ -31,15 +31,4 @@ public class Main {
}
}
class X implements Map<String, String> {
class Y {
void test() {
for (Entry<String, String> entry : X.this.entrySet()) {
String k = entry.getKey();
String v = entry.getValue();
System.out.println(k + "-" + v);
}
}
}
}
}