X-Git-Url: http://git.megacz.com/?p=org.ibex.classgen.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fclassgen%2FMethodRef.java;h=6dbb46feaf8463122979d052a97d77c827b6025c;hp=399195ccb54aeef9eafb8becc09c38cd753b8b3c;hb=7fbbcd1b85ae398c4468651e05df64e938812397;hpb=d60e86de7947e6e628b5f90dfe19bee7f7a26bd0 diff --git a/src/org/ibex/classgen/MethodRef.java b/src/org/ibex/classgen/MethodRef.java index 399195c..6dbb46f 100644 --- a/src/org/ibex/classgen/MethodRef.java +++ b/src/org/ibex/classgen/MethodRef.java @@ -28,12 +28,4 @@ public class MethodRef extends MemberRef { sb.append(returnType.getDescriptor()); return sb.toString(); } - - /** MethodRef class used for the INVOKEINTERFACE bytecode. Although this contains the same - data as a normal MethodRef, these are treated differently in the byte code format. In general, - users don't need to be concerned with this though because MethodRef's are automatically converted - to MethodRef.I's when they are applied to an INVOKEINTERFACE bytecode */ - public static class I extends MethodRef { - public I(Type.Class c, String name, Type ret, Type[] args) { super(c, name, ret, args); } - } }