Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Done
-
Trunk
-
None
Description
UtilValidate's isEmpty and isNotEmpty methods not used correctly, like,
– used if(!UtilValidate.isEmpty(productId)) instead of if(UtilValidate.isNotEmpty(productId))
– used if(!UtilValidate.isNotEmpty(productId)) instead of if(UtilValidate.isEmpty(productId))
We should use this correctly because this would improve code readabiliiy of project.