Description
Regarding optimization made in this method:
public static boolean toBoolean(String str)
in order to speed up the execution, why not use the same optimization in this method:
public static Boolean toBooleanObject(String str)
Note: the parameter is the same, only the output changes (from true/false to Boolean.TRUE/Boolean.FALSE/null)
Attachments
Issue Links
- breaks
-
LANG-896 BooleanUtils.toBoolean(String str) javadoc is not updated.
- Closed