Author: mthl
Date: Sat Oct 19 13:37:37 2019
New Revision: 1868623
URL:
http://svn.apache.org/viewvc?rev=1868623&view=revLog:
Fixed: Adapt some javadoc to let the build succeed
Modified:
ofbiz/ofbiz-framework/branches/release18.12/framework/base/src/main/java/org/apache/ofbiz/base/util/ObjectType.java
ofbiz/ofbiz-framework/branches/release18.12/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/JWTManager.java
Modified: ofbiz/ofbiz-framework/branches/release18.12/framework/base/src/main/java/org/apache/ofbiz/base/util/ObjectType.java
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/branches/release18.12/framework/base/src/main/java/org/apache/ofbiz/base/util/ObjectType.java?rev=1868623&r1=1868622&r2=1868623&view=diff==============================================================================
--- ofbiz/ofbiz-framework/branches/release18.12/framework/base/src/main/java/org/apache/ofbiz/base/util/ObjectType.java (original)
+++ ofbiz/ofbiz-framework/branches/release18.12/framework/base/src/main/java/org/apache/ofbiz/base/util/ObjectType.java Sat Oct 19 13:37:37 2019
@@ -157,7 +157,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/branches/release18.12/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/JWTManager.java
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/branches/release18.12/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/JWTManager.java?rev=1868623&r1=1868622&r2=1868623&view=diff==============================================================================
--- ofbiz/ofbiz-framework/branches/release18.12/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/JWTManager.java (original)
+++ ofbiz/ofbiz-framework/branches/release18.12/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/JWTManager.java Sat Oct 19 13:37:37 2019
@@ -206,7 +206,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