Skip to content

Commit

Permalink
Deleted print of Countrys in DataLoader.java
Browse files Browse the repository at this point in the history
  • Loading branch information
s4paweil committed Nov 7, 2022
1 parent d96b0c3 commit fcae2a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/unitrier/st/core/DataLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public String loadJsonFile(String name) {
BufferedReader br = new BufferedReader(new FileReader(file));
String str;
while ((str = br.readLine()) != null) {
System.out.println(str);
//System.out.println(str);
json.append(str);
}
br.close();
Expand Down

0 comments on commit fcae2a3

Please sign in to comment.