Author: hansbak
Date: Thu Oct 12 23:51:20 2006
New Revision: 463576

URL: http://svn.apache.org/viewvc?view=rev&rev=463576
Log:
remove the unused 'presonal' parameter to the findPartyFromEmailAddress service 
call

Modified:
    
incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/email/EmailServices.java

Modified: 
incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/email/EmailServices.java
URL: 
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/email/EmailServices.java?view=diff&rev=463576&r1=463575&r2=463576
==============================================================================
--- 
incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/email/EmailServices.java
 (original)
+++ 
incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/email/EmailServices.java
 Thu Oct 12 23:51:20 2006
@@ -587,7 +587,6 @@
        if (!UtilValidate.isEmpty(emailAddress)) {
                map = new HashMap();
                map.put("address", emailAddress.getAddress());
-               map.put("personal", emailAddress.getPersonal());
                map.put("userLogin", userLogin);
                result = dispatcher.runSync("findPartyFromEmailAddress", map);  
                
        }       
@@ -615,7 +614,6 @@
                     if (!UtilValidate.isEmpty(emailAddress)) {
                         map = new HashMap();
                         map.put("address", emailAddress.getAddress());
-                        map.put("personal", emailAddress.getPersonal());
                         map.put("userLogin", userLogin);
                         result = 
dispatcher.runSync("findPartyFromEmailAddress", map);
                         


Reply via email to