Remove souts

This commit is contained in:
Grzegorz Piwowarek 2016-10-04 18:12:08 +02:00
parent f12e6ee2d0
commit 2ef8bc2a68
1 changed files with 0 additions and 2 deletions

View File

@ -28,7 +28,6 @@ public class FileNotFoundExceptionTest {
try {
new File(fileName).createNewFile();
readFailingFile();
System.out.println("File was created and read.");
} catch (IOException ioe) {
throw new RuntimeException("BusinessException: even creation is not possible.", ioe);
}
@ -41,7 +40,6 @@ public class FileNotFoundExceptionTest {
readFailingFile();
} catch (FileNotFoundException ex) {
LOG.error("Optional file " + fileName + " was not found.", ex);
System.out.println("File was logged.");
}
}