Blob Blame History Raw
--- bigloo2.9a/runtime/Jlib/JDK15.java.orig	2007-03-28 15:55:35.000000000 -0400
+++ bigloo2.9a/runtime/Jlib/JDK15.java	2007-03-28 15:56:01.000000000 -0400
@@ -10,11 +10,11 @@
    // 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 ServerSocket makeServerSocketImpl(String name, int port)