fix build failures

This commit is contained in:
Ahmed Tawila 2017-11-16 10:39:51 +02:00
parent 10fe3d060f
commit c901cb5fad
4 changed files with 0 additions and 4 deletions

View File

@ -30,7 +30,6 @@ public class FileOutputStreamTest {
@After
public void revertFile() throws IOException {
PrintWriter writer = new PrintWriter(fileName);
writer.print("");
writer.print("UK\r\n" + "US\r\n" + "Germany\r\n");
writer.close();
}

View File

@ -34,7 +34,6 @@ public class FileWriterTest {
@After
public void revertFile() throws IOException {
PrintWriter writer = new PrintWriter(fileName);
writer.print("");
writer.print("UK\r\n" + "US\r\n" + "Germany\r\n");
writer.close();
}

View File

@ -30,7 +30,6 @@ public class FilesTest {
@After
public void revertFile() throws IOException {
PrintWriter writer = new PrintWriter(fileName);
writer.print("");
writer.print("UK\r\n" + "US\r\n" + "Germany\r\n");
writer.close();
}

View File

@ -34,7 +34,6 @@ public class GuavaTest {
@After
public void revertFile() throws IOException {
PrintWriter writer = new PrintWriter(fileName);
writer.print("");
writer.print("UK\r\n" + "US\r\n" + "Germany\r\n");
writer.close();
}