Skip to content

Commit abe5dc0

Browse files
committed
Release v1.2.0
1 parent 433cc02 commit abe5dc0

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

causalpath.iml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<orderEntry type="library" name="Maven: org.apache.commons:commons-compress:1.7" level="project" />
1414
<orderEntry type="library" name="Maven: org.tukaani:xz:1.4" level="project" />
1515
<orderEntry type="library" name="Maven: org.apache.commons:commons-collections4:4.0" level="project" />
16-
<orderEntry type="library" name="Maven: org.apache.poi:poi:3.11-beta2" level="project" />
17-
<orderEntry type="library" name="Maven: commons-codec:commons-codec:1.9" level="project" />
16+
<orderEntry type="library" name="Maven: org.apache.poi:poi:3.17" level="project" />
17+
<orderEntry type="library" name="Maven: commons-codec:commons-codec:1.10" level="project" />
1818
<orderEntry type="library" name="Maven: org.apache.poi:poi-ooxml:3.11-beta2" level="project" />
1919
<orderEntry type="library" name="Maven: org.apache.poi:poi-ooxml-schemas:3.11-beta2" level="project" />
2020
<orderEntry type="library" name="Maven: org.apache.xmlbeans:xmlbeans:2.6.0" level="project" />

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.panda</groupId>
88
<artifactId>causalpath</artifactId>
9-
<version>1.2.0-SNAPSHOT</version>
9+
<version>1.2.0</version>
1010

1111
<repositories>
1212
<repository>
@@ -53,12 +53,12 @@
5353
<dependency>
5454
<groupId>org.panda</groupId>
5555
<artifactId>utility</artifactId>
56-
<version>1.2.0-SNAPSHOT</version>
56+
<version>1.2.0</version>
5757
</dependency>
5858
<dependency>
5959
<groupId>org.panda</groupId>
6060
<artifactId>resource</artifactId>
61-
<version>1.2.0-SNAPSHOT</version>
61+
<version>1.2.0</version>
6262
</dependency>
6363
<dependency>
6464
<groupId>junit</groupId>

src/main/java/org/panda/causalpath/run/JasonizeResultGraphsRecursively.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package org.panda.causalpath.run;
22

33
import org.panda.causalpath.network.GraphWriter;
4+
import org.panda.utility.FileUtil;
45

56
import java.io.File;
67
import java.io.IOException;
@@ -31,7 +32,7 @@ private static void generate(String inBase, String inDir, String sifName, String
3132
String sifPath = inDir + File.separator + sifName + ".sif";
3233
String formatPath = inDir + File.separator + sifName + ".format";
3334

34-
if (Files.exists(Paths.get(sifPath)) && Files.exists(Paths.get(formatPath)))
35+
if (Files.exists(Paths.get(sifPath)) && !FileUtil.isEmpty(sifPath) && Files.exists(Paths.get(formatPath)))
3536
{
3637
String outDir = inDir.replace(inBase, outBase);
3738
Files.createDirectories(Paths.get(outDir));

0 commit comments

Comments
 (0)