Header updates

This commit is contained in:
jamesagnew 2019-02-25 20:47:30 -05:00
parent 94f9ffa977
commit aef5989477
3 changed files with 5 additions and 5 deletions

View File

@ -649,7 +649,7 @@ public abstract class BaseParser implements IParser {
@Override
public <T extends IBaseResource> T parseResource(Class<T> theResourceType, InputStream theInputStream) throws DataFormatException {
return parseResource(theResourceType, new InputStreamReader(theInputStream, Charsets.UTF_8));
return parseResource(theResourceType, new InputStreamReader(theInputStream, Constants.CHARSET_UTF8));
}
@Override