hotspot/test/compiler/jsr292/methodHandleExceptions/p/Tdirect.java
changeset 40059 c2304140ed64
parent 21770 e8932d2fda2c
child 41705 332239c052cc
--- a/hotspot/test/compiler/jsr292/methodHandleExceptions/p/Tdirect.java	Tue Jul 12 08:42:46 2016 +0000
+++ b/hotspot/test/compiler/jsr292/methodHandleExceptions/p/Tdirect.java	Tue Jul 12 18:24:48 2016 +0300
@@ -28,7 +28,7 @@
  * Invokes I.m directly using invokeInterface bytecodes.
  */
 public class Tdirect {
-     public static int test(p.I i) {
+     public static int test(I i) {
          int accum = 0;
          for (int j = 0; j < 100000; j++) {
              accum += i.m();
@@ -36,7 +36,7 @@
         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) {
          int accum = 0;
          for (int j = 0; j < 100000; j++) {