Description
Hello!
Code in the method CSVUtil. quoteEscape
CSVUtil.java
if (result.indexOf('\"') >= 0) { result.replace("\"", ESCAPED_QUOTE); }
ignores the return value of the String.replace method.
Probably, is should be:
CSVUtil.java
if (result.indexOf('\"') >= 0) { result = result.replace("\"", ESCAPED_QUOTE); }
This possible defect found by static code analyzer AppChecker