src/java.base/share/classes/java/lang/invoke/WrongMethodTypeException.java
changeset 59201 b24f4caa1411
parent 57956 e0b8b019d2f5
--- a/src/java.base/share/classes/java/lang/invoke/WrongMethodTypeException.java	Wed Nov 20 10:13:10 2019 +0000
+++ b/src/java.base/share/classes/java/lang/invoke/WrongMethodTypeException.java	Thu Nov 21 09:10:21 2019 +0000
@@ -69,7 +69,8 @@
      * @param cause the cause of the exception, or null.
      */
     //FIXME: make this public in MR1
-    /*non-public*/ WrongMethodTypeException(String s, Throwable cause) {
+    /*non-public*/
+    WrongMethodTypeException(String s, Throwable cause) {
         super(s, cause);
     }
 
@@ -80,7 +81,8 @@
      * @param cause the cause of the exception, or null.
      */
     //FIXME: make this public in MR1
-    /*non-public*/ WrongMethodTypeException(Throwable cause) {
+    /*non-public*/
+    WrongMethodTypeException(Throwable cause) {
         super(cause);
     }
 }