Previously several parts of the code use a FileReader for reading files, so the default platform encoding was used. Now UTF-8 is used regardless of platform.
Also the IOUtils are dropped and the parts of the code that used the IOUtils now use try-with blocks.
Previously several parts of the code use a
FileReader
for reading files, so the default platform encoding was used. Now UTF-8 is used regardless of platform. Also theIOUtils
are dropped and the parts of the code that used theIOUtils
now use try-with blocks.This should fix #76.