StreamLogger bug fix and added new line to JSONWriter flush function

This commit is contained in:
Ziver Koc 2015-10-22 15:50:19 +00:00
parent e9715298b6
commit f1e5e17d50
3 changed files with 18 additions and 24 deletions

View file

@ -144,6 +144,7 @@ public class JSONWriter{
}
public void flush(){
out.print("\n");
out.flush();
}
}