Skip to content

Commit 9a38183

Browse files
committed
New version
1 parent 5ad6c6a commit 9a38183

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
jacoco
66
}
77

8-
version = "0.0.4"
8+
version = "0.0.5"
99
group = "fr.formiko.utils"
1010

1111
repositories {

src/main/java/fr/formiko/utils/FLUFiles.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,10 @@ private boolean createFile(String path) {
104104
createParents(file);
105105
// setDownloadingValue(currentAction++ / (double) actionToDo);
106106
// setDownloadingMessage("Creating file");
107-
boolean r = file.createNewFile();
107+
// boolean r = file.createNewFile();
108108
// setDownloadingValue(currentAction++ / (double) actionToDo);
109-
return r;
109+
// return r;
110+
return file.createNewFile();
110111
} catch (IOException e) {
111112
return false;
112113
}

0 commit comments

Comments
 (0)