File tree Expand file tree Collapse file tree 2 files changed +1
-1
lines changed
main/java/org/fugerit/java/core/io
test/java/test/org/fugerit/java/core/io Expand file tree Collapse file tree 2 files changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ public static boolean isInTmpFolder( String tempFilePath ) throws IOException {
5050 }
5151
5252 public static boolean createFullFile ( File file ) throws IOException {
53- boolean created = Boolean .TRUE ;
5453 if ( file .exists () ) {
5554 return Boolean .FALSE ;
5655 } else {
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ public void testCreateFullFile() throws IOException {
4747 file1 .delete ();
4848 file1 .getParentFile ().delete ();
4949 file2 .delete ();
50+ Assert .assertTrue ( FileIO .createFullFile ( new File ( baseDir1 ) ) );
5051 Assert .assertTrue ( FileIO .createFullFile ( file0 ) );
5152 Assert .assertTrue ( FileIO .createFullFile ( file1 ) );
5253 Assert .assertFalse ( FileIO .createFullFile ( file0 ) );
You can’t perform that action at this time.
0 commit comments