# HG changeset patch # User jrose # Date 1306995931 25200 # Node ID a93146d0e4be78594fd488369eddc9c73d11d2f3 # Parent 60b8287df30e5694f69740cb23b527b440ddcbbc 7049410: JSR 292 old method name MethodHandle.invokeGeneric should not be accepted by the JVM Summary: change the default setting of the flag AllowInvokeGeneric to false Reviewed-by: never diff -r 60b8287df30e -r a93146d0e4be src/share/vm/runtime/globals.hpp --- a/src/share/vm/runtime/globals.hpp Wed Jun 01 23:25:20 2011 -0700 +++ b/src/share/vm/runtime/globals.hpp Wed Jun 01 23:25:31 2011 -0700 @@ -3734,7 +3734,7 @@ experimental(bool, TrustFinalNonStaticFields, false, \ "trust final non-static declarations for constant folding") \ \ - experimental(bool, AllowInvokeGeneric, true, \ + experimental(bool, AllowInvokeGeneric, false, \ "accept MethodHandle.invoke and MethodHandle.invokeGeneric " \ "as equivalent methods") \ \