Patch WW-3945

Set default encoding for JSONResult to UTF-8

Now the default encoding is UTF-8 for JSON as should be.
This commit is contained in:
Victor Sosa
2016-01-03 08:05:03 -04:00
parent 38da3f6705
commit b198e3bf3d
2 changed files with 1 additions and 3 deletions
@@ -80,7 +80,7 @@ public class JSONResult implements Result {
public static final String DEFAULT_PARAM = null;
private String encoding;
private String defaultEncoding = "ISO-8859-1";
private String defaultEncoding = "UTF-8";
private List<Pattern> includeProperties;
private List<Pattern> excludeProperties;
private String root;