Author: jleroux
Date: Mon Jun 8 09:58:50 2015
New Revision: 1684133
URL:
http://svn.apache.org/r1684133Log:
A patch from Taher Alkhateeb "Upgrade OFBiz to Java JDK 8"
https://issues.apache.org/jira/browse/OFBIZ-64582nd step: allows Eclipse EJC to compile, fixes a problem with compilation error in eclipse only, it works okay in javac but not in Eclipse EJC
jleroux: this introduces a small "regression" in the code syntax but to allow users to compile with Eclipse EJC.
Modified:
ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityFieldMap.java
Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityFieldMap.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityFieldMap.java?rev=1684133&r1=1684132&r2=1684133&view=diff==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityFieldMap.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityFieldMap.java Mon Jun 8 09:58:50 2015
@@ -68,7 +68,7 @@ public final class EntityFieldMap extend
return Collections.unmodifiableSet(this.fieldMap.keySet()).iterator();
}
- public Iterator<Map.Entry<String, Object>> getFieldEntryIterator() {
+ public Iterator<?> getFieldEntryIterator() {
return Collections.unmodifiableMap(this.fieldMap).entrySet().iterator();
}