langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/InferenceContext.java
changeset 42827 36468b5fa7f4
parent 39363 ebaee646b121
child 44187 c56d85ea6c89
--- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/InferenceContext.java	Fri Dec 16 12:08:46 2016 +0100
+++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/InferenceContext.java	Fri Dec 16 15:27:34 2016 +0000
@@ -123,11 +123,7 @@
      * inference context
      */
     List<Type> restvars() {
-        return filterVars(new Filter<UndetVar>() {
-            public boolean accepts(UndetVar uv) {
-                return uv.getInst() == null;
-            }
-        });
+        return filterVars(uv -> uv.getInst() == null);
     }
 
     /**
@@ -135,11 +131,7 @@
      * inference context
      */
     List<Type> instvars() {
-        return filterVars(new Filter<UndetVar>() {
-            public boolean accepts(UndetVar uv) {
-                return uv.getInst() != null;
-            }
-        });
+        return filterVars(uv -> uv.getInst() != null);
     }
 
     /**
@@ -147,13 +139,9 @@
      * declared bounds).
      */
     final List<Type> boundedVars() {
-        return filterVars(new Filter<UndetVar>() {
-            public boolean accepts(UndetVar uv) {
-                return uv.getBounds(InferenceBound.UPPER)
-                         .diff(uv.getDeclaredBounds())
-                         .appendList(uv.getBounds(InferenceBound.EQ, InferenceBound.LOWER)).nonEmpty();
-            }
-        });
+        return filterVars(uv -> uv.getBounds(InferenceBound.UPPER)
+                 .diff(uv.getDeclaredBounds())
+                 .appendList(uv.getBounds(InferenceBound.EQ, InferenceBound.LOWER)).nonEmpty());
     }
 
     /* Returns the corresponding inference variables.
@@ -341,11 +329,7 @@
         //set up listeners to notify original inference contexts as
         //propagated vars are inferred in new context
         for (Type t : inferencevars) {
-            that.freeTypeListeners.put(new FreeTypeListener() {
-                public void typesInferred(InferenceContext inferenceContext) {
-                    InferenceContext.this.notifyChange();
-                }
-            }, List.of(t));
+            that.freeTypeListeners.put(inferenceContext -> InferenceContext.this.notifyChange(), List.of(t));
         }
     }