hotspot/test/compiler/jsr292/methodHandleExceptions/p/Treflect.java
changeset 40059 c2304140ed64
parent 21770 e8932d2fda2c
child 41705 332239c052cc
--- a/hotspot/test/compiler/jsr292/methodHandleExceptions/p/Treflect.java	Tue Jul 12 08:42:46 2016 +0000
+++ b/hotspot/test/compiler/jsr292/methodHandleExceptions/p/Treflect.java	Tue Jul 12 18:24:48 2016 +0300
@@ -21,6 +21,7 @@
  * questions.
  *
  */
+
 package p;
 
 import java.lang.reflect.InvocationTargetException;
@@ -31,9 +32,9 @@
  */
 public class Treflect {
 
-    public static int test(p.I ii) throws Throwable {
+    public static int test(I ii) throws Throwable {
         int accum = 0;
-        Method m = p.I.class.getMethod("m");
+        Method m = I.class.getMethod("m");
         try {
             for (int j = 0; j < 100000; j++) {
                 Object o = m.invoke(ii);
@@ -45,10 +46,10 @@
         return accum;
     }
 
-    public static int test(p.I ii, byte b, char c, short s, int i, long l,
+    public static int test(I ii, byte b, char c, short s, int i, long l,
             Object o1, Object o2, Object o3, Object o4, Object o5, Object o6)
             throws Throwable {
-        Method m = p.I.class.getMethod("m", Byte.TYPE, Character.TYPE,
+        Method m = I.class.getMethod("m", Byte.TYPE, Character.TYPE,
                 Short.TYPE, Integer.TYPE, Long.TYPE,
                 Object.class, Object.class, Object.class,
                 Object.class, Object.class, Object.class);