fixes unnecessare toString

This commit is contained in:
2024-04-20 18:44:55 +02:00
parent f98a13c3d1
commit 15eb3d346c

View File

@@ -11,7 +11,7 @@ public class TryOut {
Path path = Paths.get("/home/jan/git-projekte/howtodata/JSON/alice.json");
System.out.println(FileHelper.readJson(path));
} catch (IOException e) {
System.err.println(e.toString());
System.err.println(e);
}
}
}