# HG changeset patch # User Gilles Duboscq # Date 1329415158 -3600 # Node ID 815072ee48e05f30f654c8de9fb757f975604203 # Parent 00e01f401c0371e3603893e4f941cff4f5650908# Parent 4c417ce1b8c8dc752291a0843acc3229c51464d4 Merge diff -r 00e01f401c03 -r 815072ee48e0 graal/com.oracle.max.graal.hotspot/src/com/oracle/max/graal/hotspot/ri/HotSpotMethodResolvedImpl.java --- a/graal/com.oracle.max.graal.hotspot/src/com/oracle/max/graal/hotspot/ri/HotSpotMethodResolvedImpl.java Thu Feb 16 18:59:09 2012 +0100 +++ b/graal/com.oracle.max.graal.hotspot/src/com/oracle/max/graal/hotspot/ri/HotSpotMethodResolvedImpl.java Thu Feb 16 18:59:18 2012 +0100 @@ -325,7 +325,7 @@ private Method toJava() { try { - return holder.toJava().getDeclaredMethod(name, CiUtil.signatureToTypes(signature, holder)); + return holder.toJava().getDeclaredMethod(name, CiUtil.signatureToTypes(signature(), holder)); } catch (NoSuchMethodException e) { return null; } @@ -333,7 +333,7 @@ private Constructor toJavaConstructor() { try { - return holder.toJava().getDeclaredConstructor(CiUtil.signatureToTypes(signature, holder)); + return holder.toJava().getDeclaredConstructor(CiUtil.signatureToTypes(signature(), holder)); } catch (NoSuchMethodException e) { return null; }