From 2ef8bc2a6812c6f72cc7443aa5919efd615e35ba Mon Sep 17 00:00:00 2001 From: Grzegorz Piwowarek Date: Tue, 4 Oct 2016 18:12:08 +0200 Subject: [PATCH] Remove souts --- .../org/baeldung/core/exceptions/FileNotFoundExceptionTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/core-java/src/test/java/org/baeldung/core/exceptions/FileNotFoundExceptionTest.java b/core-java/src/test/java/org/baeldung/core/exceptions/FileNotFoundExceptionTest.java index 5675fe274e..23be2200d3 100644 --- a/core-java/src/test/java/org/baeldung/core/exceptions/FileNotFoundExceptionTest.java +++ b/core-java/src/test/java/org/baeldung/core/exceptions/FileNotFoundExceptionTest.java @@ -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."); } }