You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2022/04/22 10:35:48 UTC

[ofbiz-framework] branch trunk updated: Improved: no functional change, fixes a Javadoc issue

This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/trunk by this push:
     new bbe05496fb Improved: no functional change, fixes a Javadoc issue
bbe05496fb is described below

commit bbe05496fbccf74e3d3def68bd2e1c9d919b5bb7
Author: Jacques Le Roux <ja...@les7arts.com>
AuthorDate: Fri Apr 22 12:31:53 2022 +0200

    Improved: no functional change, fixes a Javadoc issue
    
    SecurityUtil.java:91: error: unknown tag: String
         * @return List<String>
---
 .../security/src/main/java/org/apache/ofbiz/security/SecurityUtil.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/framework/security/src/main/java/org/apache/ofbiz/security/SecurityUtil.java b/framework/security/src/main/java/org/apache/ofbiz/security/SecurityUtil.java
index 8bd470e987..446a1a475c 100644
--- a/framework/security/src/main/java/org/apache/ofbiz/security/SecurityUtil.java
+++ b/framework/security/src/main/java/org/apache/ofbiz/security/SecurityUtil.java
@@ -88,7 +88,7 @@ public final class SecurityUtil {
      * @param delegator
      * @param userLoginId
      * @param toUserLoginId
-     * @return List<String>
+     * @return List
      */
     public static List<String> hasUserLoginMorePermissionThan(Delegator delegator, String userLoginId, String toUserLoginId) {
         ArrayList<String> returnList = new ArrayList<>();