Skip to content
This repository has been archived by the owner on May 9, 2020. It is now read-only.

Commit

Permalink
Merged revision(s) 1612205 from ofbiz/trunk:
Browse files Browse the repository at this point in the history
Fixed a bug in Mini-Language where a NPE could be thrown while using Verbose logging: https://issues.apache.org/jira/browse/OFBIZ-5689.



git-svn-id: https://svn.apache.org/repos/asf/ofbiz/branches/release11.04@1612229 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
adrian-crum committed Jul 21, 2014
1 parent 150fba4 commit 883eab8
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -137,7 +137,10 @@ public boolean exec(MethodContext methodContext) {
}
}
} else {
if (Debug.infoOn()) Debug.logInfo("List not found with name " + listAcsr + ", doing nothing: " + rawString(), module);
if (Debug.verboseOn()) {
Debug.logVerbose("Cannot iterate over a " + objList == null ? "null object" : objList.getClass().getName()
+ ", doing nothing: " + this, module);
}
return true;
}
entryAcsr.put(methodContext, oldEntryValue);
Expand Down

0 comments on commit 883eab8

Please sign in to comment.