This commit is contained in:
jfrijters 2005-05-30 11:23:20 +00:00
Родитель 94f507868e
Коммит 8eafdab0a6
2 изменённых файлов: 0 добавлений и 13 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -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);