You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2007/12/05 16:44:55 UTC

svn commit: r601370 - /incubator/sling/trunk/sling/core/src/main/java/org/apache/sling/core/impl/helper/SlingServletContext.java

Author: cziegeler
Date: Wed Dec  5 07:44:54 2007
New Revision: 601370

URL: http://svn.apache.org/viewvc?rev=601370&view=rev
Log:
Correct javadocs.

Modified:
    incubator/sling/trunk/sling/core/src/main/java/org/apache/sling/core/impl/helper/SlingServletContext.java

Modified: incubator/sling/trunk/sling/core/src/main/java/org/apache/sling/core/impl/helper/SlingServletContext.java
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/sling/core/src/main/java/org/apache/sling/core/impl/helper/SlingServletContext.java?rev=601370&r1=601369&r2=601370&view=diff
==============================================================================
--- incubator/sling/trunk/sling/core/src/main/java/org/apache/sling/core/impl/helper/SlingServletContext.java (original)
+++ incubator/sling/trunk/sling/core/src/main/java/org/apache/sling/core/impl/helper/SlingServletContext.java Wed Dec  5 07:44:54 2007
@@ -312,13 +312,13 @@
         return null;
     }
 
-    /** Returns <code>null</code> as defined in Servlet API 2.4 */
+    /** Returns an empty enumeration as defined in Servlet API 2.4 */
     @Deprecated
     public Enumeration<?> getServletNames() {
         return Collections.enumeration(Collections.emptyList());
     }
 
-    /** Returns <code>null</code> as defined in Servlet API 2.4 */
+    /** Returns an empty enumeration as defined in Servlet API 2.4 */
     @Deprecated
     public Enumeration<?> getServlets() {
         return Collections.enumeration(Collections.emptyList());