SLING-6609 clarified implementation hint to use get(String), instead of get(String, Class) because the class is not available when the defaultValue is null

git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1785808 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/sling/api/resource/ValueMap.java b/src/main/java/org/apache/sling/api/resource/ValueMap.java
index 94fd522..975afc8 100644
--- a/src/main/java/org/apache/sling/api/resource/ValueMap.java
+++ b/src/main/java/org/apache/sling/api/resource/ValueMap.java
@@ -74,7 +74,7 @@
      * case.
      * <br><br>
      * <b>Implementation hint</b>: In the past it was allowed to call this with a 2nd parameter being {@code null}. 
-     * Therefore all implementations should internally call {@link #get(String, Class)} when the 2nd parameter
+     * Therefore all implementations should internally call {@link #get(String)} when the 2nd parameter
      * has value {@code null}.
      *
      * @param name The name of the property