changeset 18251:d49691aab589

minor documentation fixes
author Doug Simon <doug.simon@oracle.com>
date Wed, 05 Nov 2014 10:31:02 +0100
parents 810b676423bc
children ae8e86212c77
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotGraalRuntime.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotGraalRuntime.java	Tue Nov 04 22:43:54 2014 +0100
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotGraalRuntime.java	Wed Nov 05 10:31:02 2014 +0100
@@ -257,7 +257,7 @@
 
     /**
      * Graal mirrors are stored as a {@link ClassValue} associated with the {@link Class} of the
-     * type. This data structure stores both {@link HotSpotResolvedJavaMethod} and
+     * type. This data structure stores both {@link HotSpotResolvedObjectType} and
      * {@link HotSpotResolvedPrimitiveType} types.
      */
     private final ClassValue<ResolvedJavaType> graalMirrors = new ClassValue<ResolvedJavaType>() {
@@ -330,7 +330,7 @@
     /**
      * Gets the Graal mirror for a {@link Class} object.
      *
-     * @return the {@link HotSpotResolvedJavaType} corresponding to {@code javaClass}
+     * @return the {@link ResolvedJavaType} corresponding to {@code javaClass}
      */
     public ResolvedJavaType fromClass(Class<?> javaClass) {
         return graalMirrors.get(javaClass);