Skip to content

Commit 640406e

Browse files
minor fixes
1 parent d26baee commit 640406e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

data7/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
<dependency>
1919
<groupId>lu.jimenez.research</groupId>
2020
<artifactId>data7-miscUtils</artifactId>
21-
<version>1.0</version>
21+
<version>1.1</version>
2222
</dependency>
2323
<dependency>
2424
<groupId>lu.jimenez.research</groupId>
2525
<artifactId>data7-gitUtils</artifactId>
26-
<version>1.0</version>
26+
<version>1.1</version>
2727
</dependency>
2828
</dependencies>
2929

data7/src/main/java/data7/ResourcesPath.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class ResourcesPath {
1212

1313
public ResourcesPath(String path) {
1414
File f = new File(path);
15-
if (!(f.exists() && f.isDirectory())) {
15+
if (f.exists() && f.isDirectory()) {
1616
savingPath = path;
1717
binaryPath = savingPath + "binary/";
1818
gitPath = savingPath + "git/";

0 commit comments

Comments
 (0)