langtools/src/share/classes/com/sun/tools/javac/comp/LambdaToMethod.java
changeset 22165 ec53c8946fc2
parent 22163 3651128c74eb
child 22687 53157805d7e4
--- a/langtools/src/share/classes/com/sun/tools/javac/comp/LambdaToMethod.java	Thu Dec 19 11:38:45 2013 -0500
+++ b/langtools/src/share/classes/com/sun/tools/javac/comp/LambdaToMethod.java	Thu Dec 19 20:16:44 2013 +0000
@@ -1771,11 +1771,11 @@
                 }
                 translatedSymbols = new EnumMap<>(LambdaSymbolKind.class);
 
-                translatedSymbols.put(PARAM, new LinkedHashMap<>());
-                translatedSymbols.put(LOCAL_VAR, new LinkedHashMap<>());
-                translatedSymbols.put(CAPTURED_VAR, new LinkedHashMap<>());
-                translatedSymbols.put(CAPTURED_THIS, new LinkedHashMap<>());
-                translatedSymbols.put(TYPE_VAR, new LinkedHashMap<>());
+                translatedSymbols.put(PARAM, new LinkedHashMap<Symbol, Symbol>());
+                translatedSymbols.put(LOCAL_VAR, new LinkedHashMap<Symbol, Symbol>());
+                translatedSymbols.put(CAPTURED_VAR, new LinkedHashMap<Symbol, Symbol>());
+                translatedSymbols.put(CAPTURED_THIS, new LinkedHashMap<Symbol, Symbol>());
+                translatedSymbols.put(TYPE_VAR, new LinkedHashMap<Symbol, Symbol>());
             }
 
              /**