This commit is contained in:
Ziver Koc 2016-07-13 21:29:38 +02:00
parent 5606f57514
commit dc91d5e992
4 changed files with 44 additions and 28 deletions

View file

@ -83,6 +83,7 @@ public class IOUtil {
while((line = in.readLine()) != null){
str.append(line).append("\n");
}
str.delete(str.length()-1, str.length()); // remove last new line
in.close();
return str.toString();