src/java.base/share/classes/java/lang/invoke/SimpleMethodHandle.java
changeset 59201 b24f4caa1411
parent 47753 a2008587c13f
--- a/src/java.base/share/classes/java/lang/invoke/SimpleMethodHandle.java	Wed Nov 20 10:13:10 2019 +0000
+++ b/src/java.base/share/classes/java/lang/invoke/SimpleMethodHandle.java	Thu Nov 21 09:10:21 2019 +0000
@@ -40,19 +40,23 @@
         super(type, form);
     }
 
-    /*non-public*/ static BoundMethodHandle make(MethodType type, LambdaForm form) {
+    /*non-public*/
+    static BoundMethodHandle make(MethodType type, LambdaForm form) {
         return new SimpleMethodHandle(type, form);
     }
 
-    /*non-public*/ static @Stable BoundMethodHandle.SpeciesData BMH_SPECIES;
+    /*non-public*/
+    static @Stable BoundMethodHandle.SpeciesData BMH_SPECIES;
 
     @Override
-    /*non-public*/ BoundMethodHandle.SpeciesData speciesData() {
+    /*non-public*/
+    BoundMethodHandle.SpeciesData speciesData() {
             return BMH_SPECIES;
     }
 
     @Override
-    /*non-public*/ BoundMethodHandle copyWith(MethodType mt, LambdaForm lf) {
+    /*non-public*/
+    BoundMethodHandle copyWith(MethodType mt, LambdaForm lf) {
         return make(mt, lf);
     }
 
@@ -62,11 +66,13 @@
     }
 
     @Override
-    /*non-public*/ final BoundMethodHandle copyWithExtendL(MethodType mt, LambdaForm lf, Object narg) {
+    /*non-public*/
+    final BoundMethodHandle copyWithExtendL(MethodType mt, LambdaForm lf, Object narg) {
         return BoundMethodHandle.bindSingle(mt, lf, narg); // Use known fast path.
     }
     @Override
-    /*non-public*/ final BoundMethodHandle copyWithExtendI(MethodType mt, LambdaForm lf, int narg) {
+    /*non-public*/
+    final BoundMethodHandle copyWithExtendI(MethodType mt, LambdaForm lf, int narg) {
         try {
             return (BoundMethodHandle) BMH_SPECIES.extendWith(I_TYPE_NUM).factory().invokeBasic(mt, lf, narg);
         } catch (Throwable ex) {
@@ -74,7 +80,8 @@
         }
     }
     @Override
-    /*non-public*/ final BoundMethodHandle copyWithExtendJ(MethodType mt, LambdaForm lf, long narg) {
+    /*non-public*/
+    final BoundMethodHandle copyWithExtendJ(MethodType mt, LambdaForm lf, long narg) {
         try {
             return (BoundMethodHandle) BMH_SPECIES.extendWith(J_TYPE_NUM).factory().invokeBasic(mt, lf, narg);
         } catch (Throwable ex) {
@@ -82,7 +89,8 @@
         }
     }
     @Override
-    /*non-public*/ final BoundMethodHandle copyWithExtendF(MethodType mt, LambdaForm lf, float narg) {
+    /*non-public*/
+    final BoundMethodHandle copyWithExtendF(MethodType mt, LambdaForm lf, float narg) {
         try {
             return (BoundMethodHandle) BMH_SPECIES.extendWith(F_TYPE_NUM).factory().invokeBasic(mt, lf, narg);
         } catch (Throwable ex) {
@@ -90,7 +98,8 @@
         }
     }
     @Override
-    /*non-public*/ final BoundMethodHandle copyWithExtendD(MethodType mt, LambdaForm lf, double narg) {
+    /*non-public*/
+    final BoundMethodHandle copyWithExtendD(MethodType mt, LambdaForm lf, double narg) {
         try {
             return (BoundMethodHandle) BMH_SPECIES.extendWith(D_TYPE_NUM).factory().invokeBasic(mt, lf, narg);
         } catch (Throwable ex) {