Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
16.11.01
-
None
-
None
Description
There are lots of places in code where we have used UtilValidate.isNotEmpty() to validate GenericValue object. GenericValue will always be null or not null, they will never empty. So instead of using utility method to validate them we should be using native checks onwards.
Example:
Currently we are validating generic value in following ways
if (UtilValidate.isNotEmpty(acctgTransEntry)) {
instead we will using it in this way:
if (acctgTransEntry != null ) {
Basically these validation methods should preferably be used on Strings or Lists and normal Maps.
Attachments
Attachments
Issue Links
- is related to
-
OFBIZ-4427 Runtime errors with UtilValidate.isEmpty(Object) and IsNotEmpty should be caught during compilation
- Reopened