java 11 migration: explicit -> diamond for anonymous classes

GitOrigin-RevId: ce15f37f8882fb7915cf5c8b62e3cc4601a5cc76
master
Anna Kozlova 3 years ago committed by intellij-monorepo-bot
parent e19aab61ce
commit e708ad6393
  1. 2
      src/org/jetbrains/java/decompiler/util/SFormsFastMapDirect.java

@ -342,7 +342,7 @@ public class SFormsFastMapDirect {
if (ent != null) {
final int key = i == 0 ? ikey : (i == 1 ? ikey + VarExprent.STACK_BASE : -ikey);
list.add(new Entry<Integer, FastSparseSet<Integer>>() {
list.add(new Entry<>() {
private final Integer var = key;
private final FastSparseSet<Integer> val = ent;

Loading…
Cancel
Save