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