Blob Blame History Raw
diff -up bigloo3.1b/runtime/Jlib/JDK15.java.java-1.5 bigloo3.1b/runtime/Jlib/JDK15.java
--- bigloo3.1b/runtime/Jlib/JDK15.java.java-1.5	2008-09-15 12:12:36.000000000 +0200
+++ bigloo3.1b/runtime/Jlib/JDK15.java	2008-09-18 22:38:19.000000000 +0200
@@ -21,11 +21,11 @@ public class JDK15 extends JDK {
    // JDK1.5 methods
    
    public Method getDeclaredMethodImpl( Class c, byte[] m ) throws Exception {
-      return c.getDeclaredMethod( new String( m ) );
+      return c.getDeclaredMethod( new String( m ), null );
    }
    
    public Object invokeImpl( Method m ) throws Exception {
-      return m.invoke( null );
+      return m.invoke( null, null );
    }
    
    public Object invoke3Impl(Method m, int n, byte[] a) throws Exception {