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.gitThe following commit(s) were added to refs/heads/trunk by this push:
new fec0e19 Improved: no functional change
fec0e19 is described below
commit fec0e19de09ac843ea81da014ee87f7bd7a4a493
Author: Jacques Le Roux <
[hidden email]>
AuthorDate: Tue Feb 4 09:45:55 2020 +0100
Improved: no functional change
Fixed Javadoc creation issue reported at INFRA-19807
Thanks: Chris Lambertus
---
.../src/main/java/org/apache/ofbiz/entity/util/EntityUtil.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtil.java b/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtil.java
index 9a69955..4bdaca0 100644
--- a/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtil.java
+++ b/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityUtil.java
@@ -19,6 +19,8 @@
package org.apache.ofbiz.entity.util;
+import static java.util.stream.Collectors.toList;
+
import java.io.Serializable;
import java.sql.Timestamp;
import java.util.ArrayList;
@@ -52,8 +54,6 @@ import org.apache.ofbiz.entity.condition.OrderByList;
import org.apache.ofbiz.entity.model.ModelEntity;
import org.apache.ofbiz.entity.model.ModelField;
-import static java.util.stream.Collectors.toList;
-
/**
* Helper methods when dealing with Entities, especially ones that follow certain conventions
*/
@@ -575,7 +575,7 @@ public final class EntityUtil {
* Form a entityName and primary keys path
* convert it to a Map contains all pkValue :
* entityName/pkValue1/pkValue2/../pkValueN
- * -> [pkName1: pkValue1,
+ * -> [pkName1: pkValue1,
* pkName2, pkValue2,
* ...,
* pkNameN: pkValueN]