< prev index next >

test/langtools/tools/javac/lambda/methodReference/BridgeMethod.java

Print this page
rev 58565 : 8238358: Implementation of JEP 371: Hidden Classes
Reviewed-by: duke
Contributed-by: mandy.chung@oracle.com, lois.foltan@oracle.com, david.holmes@oracle.com, harold.seigel@oracle.com, serguei.spitsyn@oracle.com, alex.buckley@oracle.com, jamsheed.c.m@oracle.com

@@ -73,13 +73,10 @@
     }
 
     private static Set<String> allowedMethods() {
         Set<String> s = new HashSet<>();
         s.add("m");
-        if (Boolean.getBoolean("jdk.internal.lambda.disableEagerInitialization")) {
-            s.add("get$Lambda");
-        }
         return s;
     }
 
     private static boolean matchingMethodNames(Method[] methods) {
         Set<String> methodNames = new HashSet<>();
< prev index next >