You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by as...@apache.org on 2016/11/11 15:34:21 UTC

svn commit: r1769306 - /sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/AuthUtil.java

Author: asanso
Date: Fri Nov 11 15:34:21 2016
New Revision: 1769306

URL: http://svn.apache.org/viewvc?rev=1769306&view=rev
Log:
@releng fixing javadoc

Modified:
    sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/AuthUtil.java

Modified: sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/AuthUtil.java
URL: http://svn.apache.org/viewvc/sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/AuthUtil.java?rev=1769306&r1=1769305&r2=1769306&view=diff
==============================================================================
--- sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/AuthUtil.java (original)
+++ sling/trunk/bundles/auth/core/src/main/java/org/apache/sling/auth/core/AuthUtil.java Fri Nov 11 15:34:21 2016
@@ -98,10 +98,13 @@ public final class AuthUtil {
     /**
      * Returns the value of the named request attribute or parameter as a string
      * as follows:
+     * <ol>
      * <li>If there is a request attribute of that name, which is a non-empty
-     * string, it is returned.</li>If there is a non-empty request parameter of
-     * that name, this parameter is returned.
-     * <li>Otherwise the <code>defaultValue</code> is returned.
+     * string, it is returned.</li>
+     * <li>If there is a non-empty request parameter of
+     * that name, this parameter is returned. </li>
+     * <li>Otherwise the <code>defaultValue</code> is returned.</li>
+     * </ol>
      *
      * @param request The request from which to return the attribute or request
      *            parameter