# HG changeset patch # User Tom Rodriguez # Date 1420491600 28800 # Node ID 3ed3f2b4d7772981892a80235a5b18a16082953f # Parent 6fe1d34a7b6eec25d7e987a7ee16879a634febd4 comment fixes diff -r 6fe1d34a7b6e -r 3ed3f2b4d777 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/CompilerToVM.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/CompilerToVM.java Mon Jan 05 20:23:22 2015 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/CompilerToVM.java Mon Jan 05 13:00:00 2015 -0800 @@ -84,6 +84,7 @@ * Used to implement {@link ResolvedJavaType#findUniqueConcreteMethod(ResolvedJavaMethod)}. * * @param metaspaceMethod the metaspace Method on which to based the search + * @param actualHolderMetaspaceKlass the best known type of receiver * @return the metaspace Method result or 0 is there is no unique concrete method for * {@code metaspaceMethod} */ diff -r 6fe1d34a7b6e -r 3ed3f2b4d777 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotResolvedObjectTypeImpl.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotResolvedObjectTypeImpl.java Mon Jan 05 20:23:22 2015 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotResolvedObjectTypeImpl.java Mon Jan 05 13:00:00 2015 -0800 @@ -505,7 +505,7 @@ return hmethod.uniqueConcreteMethod(declaredHolder); } /* - * The holder may be a subtype of the decaredHolder so make sure to resolve the method to + * The holder may be a subtype of the declaredHolder so make sure to resolve the method to * the correct method for the subtype. */ HotSpotResolvedJavaMethod resolvedMethod = (HotSpotResolvedJavaMethod) resolveMethod(hmethod, this, true);