You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by mt...@apache.org on 2019/03/16 23:23:09 UTC

svn commit: r1855674 - in /ofbiz/ofbiz-framework/trunk/framework: base/src/main/java/org/apache/ofbiz/base/util/ObjectType.java webapp/src/main/java/org/apache/ofbiz/webapp/control/JWTManager.java

Author: mthl
Date: Sat Mar 16 23:23:09 2019
New Revision: 1855674

URL: http://svn.apache.org/viewvc?rev=1855674&view=rev
Log:
Fixed: Adapt some javadoc to let the build succeed

Modified:
    ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/ObjectType.java
    ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/JWTManager.java

Modified: ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/ObjectType.java
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/ObjectType.java?rev=1855674&r1=1855673&r2=1855674&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/ObjectType.java (original)
+++ ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/ObjectType.java Sat Mar 16 23:23:09 2019
@@ -156,7 +156,7 @@ public class ObjectType {
      * @throws InstantiationException
      * @throws IllegalAccessException
      * @throws NoSuchMethodException 
-     * @throws InvocationTargetException,  
+     * @throws InvocationTargetException
      */
     public static Object getInstance(String className) throws ClassNotFoundException, InstantiationException,
             IllegalAccessException, NoSuchMethodException, InvocationTargetException {

Modified: ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/JWTManager.java
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/JWTManager.java?rev=1855674&r1=1855673&r2=1855674&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/JWTManager.java (original)
+++ ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/JWTManager.java Sat Mar 16 23:23:09 2019
@@ -178,7 +178,9 @@ public class JWTManager {
     }
 
     /**
-     * Gets the authentication token from the "Authorization" header if it is in the form "Bearer <token>".
+     * Gets the authentication token from the "Authorization" header if it is
+     * in the form {@code Bearer <token>}.
+     *
      * Public for API access from third party code.
      *
      * @param request the request to get the token from