< prev index next >

test/langtools/tools/javac/lambda/lambdaExpression/LambdaTest6.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

*** 64,76 **** } 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<>(); --- 64,73 ----
< prev index next >