Author: jacopoc
Date: Wed Feb 17 09:23:00 2010
New Revision: 910880
URL: http://svn.apache.org/viewvc?rev=910880&view=rev
Log:
Fix for typo.
Modified:
ofbiz/trunk/applications/product/src/org/ofbiz/product/store/ProductStoreWorker.java
Modified: ofbiz/trunk/applications/product/src/org/ofbiz/product/store/ProductStoreWorker.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/src/org/ofbiz/product/store/ProductStoreWorker.java?rev=910880&r1=910879&r2=910880&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/src/org/ofbiz/product/store/ProductStoreWorker.java (original)
+++ ofbiz/trunk/applications/product/src/org/ofbiz/product/store/ProductStoreWorker.java Wed
Feb 17 09:23:00 2010
@@ -513,7 +513,7 @@
try {
categoryMembers = delegator.findByAnd("ProductCategoryMember", UtilMisc.toMap("productCategoryId",
surveyAppl.get("productCategoryId")));
} catch (GenericEntityException e) {
- Debug.logError(e, "Unable to get ProductCategoryMemebr records for
survey application : " + surveyAppl, module);
+ Debug.logError(e, "Unable to get ProductCategoryMember records for
survey application : " + surveyAppl, module);
}
if (categoryMembers != null) {
for (GenericValue member: categoryMembers) {
|