diff --git a/classpath/allsources.lst b/classpath/allsources.lst index 408fc0ee..3d578292 100644 --- a/classpath/allsources.lst +++ b/classpath/allsources.lst @@ -2864,7 +2864,6 @@ ../../classpath/org/omg/CORBA/BAD_CONTEXT.java ../../classpath/org/omg/CORBA/BAD_INV_ORDER.java ../../classpath/org/omg/CORBA/BAD_OPERATION.java -../../classpath/org/omg/CORBA/BAD_OPERATION.java ../../classpath/org/omg/CORBA/BAD_PARAM.java ../../classpath/org/omg/CORBA/BAD_POLICY.java ../../classpath/org/omg/CORBA/BAD_POLICY_TYPE.java diff --git a/runtime/MemberWrapper.cs b/runtime/MemberWrapper.cs index 141e92be..34742e80 100644 --- a/runtime/MemberWrapper.cs +++ b/runtime/MemberWrapper.cs @@ -313,18 +313,6 @@ abstract class MethodWrapper : MemberWrapper this.declaredExceptions = (string[])exceptions.Clone(); } - internal void SetDeclaredExceptions(IKVM.Internal.MapXml.Throws[] throws) - { - if(throws != null) - { - declaredExceptions = new string[throws.Length]; - for(int i = 0; i < throws.Length; i++) - { - declaredExceptions[i] = throws[i].Class; - } - } - } - internal static MethodWrapper FromCookie(IntPtr cookie) { return (MethodWrapper)FromCookieImpl(cookie);