You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by de...@apache.org on 2019/01/30 09:13:20 UTC

svn commit: r1852508 - /ofbiz/ofbiz-framework/branches/release17.12/framework/entity/src/main/java/org/apache/ofbiz/entity/GenericPK.java

Author: deepak
Date: Wed Jan 30 09:13:20 2019
New Revision: 1852508

URL: http://svn.apache.org/viewvc?rev=1852508&view=rev
Log:
Applied fix from trunk for revision: 1813640
============
Fixed: Corrected wrong import introduced in 1813640.

Thanks Scott Gray for reporting.

============

Modified:
    ofbiz/ofbiz-framework/branches/release17.12/framework/entity/src/main/java/org/apache/ofbiz/entity/GenericPK.java

Modified: ofbiz/ofbiz-framework/branches/release17.12/framework/entity/src/main/java/org/apache/ofbiz/entity/GenericPK.java
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/branches/release17.12/framework/entity/src/main/java/org/apache/ofbiz/entity/GenericPK.java?rev=1852508&r1=1852507&r2=1852508&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/branches/release17.12/framework/entity/src/main/java/org/apache/ofbiz/entity/GenericPK.java (original)
+++ ofbiz/ofbiz-framework/branches/release17.12/framework/entity/src/main/java/org/apache/ofbiz/entity/GenericPK.java Wed Jan 30 09:13:20 2019
@@ -19,6 +19,7 @@
 package org.apache.ofbiz.entity;
 
 import java.util.Map;
+import java.util.Objects;
 
 import org.apache.ofbiz.entity.model.ModelEntity;