You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by mr...@apache.org on 2011/02/09 21:42:23 UTC

svn commit: r1069077 - /ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/EntityWatchServices.java

Author: mrisaliti
Date: Wed Feb  9 20:42:23 2011
New Revision: 1069077

URL: http://svn.apache.org/viewvc?rev=1069077&view=rev
Log:
Remove a compile warning in EntityWatchServices (OFBIZ-4102)

Modified:
    ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/EntityWatchServices.java

Modified: ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/EntityWatchServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/EntityWatchServices.java?rev=1069077&r1=1069076&r2=1069077&view=diff
==============================================================================
--- ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/EntityWatchServices.java (original)
+++ ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/EntityWatchServices.java Wed Feb  9 20:42:23 2011
@@ -38,7 +38,7 @@ public class EntityWatchServices {
      * @param context
      * @return
      */
-    public static Map watchEntity(DispatchContext dctx, Map context) {
+    public static Map<String, Object> watchEntity(DispatchContext dctx, Map<String, ? extends Object> context) {
         GenericValue newValue = (GenericValue) context.get("newValue");
         String fieldName = (String) context.get("fieldName");