Skip to content
Snippets Groups Projects
Commit 22025776 authored by Maximilian Koenig's avatar Maximilian Koenig
Browse files

Fixed a syntactical mistake in SLAReporter

parent 9d20b1b6
No related branches found
No related tags found
No related merge requests found
......@@ -143,7 +143,8 @@ public class SLAReporter {
}
private void writeToFile(String file, String content) {
try (BufferedWriter bw = new BufferedWriter(new FileWriter(file))) {
try {
BufferedWriter bw = new BufferedWriter(new FileWriter(file));
bw.write(content);
System.out.println("Done");
} catch (IOException e) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment