Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerald Unterrainer committed Jun 29, 2021
2 parents 3d53227 + 126c6ba commit 403abf0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<modelVersion>4.0.0</modelVersion>
<artifactId>jre-utils</artifactId>
<version>0.1.11</version>
<version>0.1.12</version>
<name>JreUtils</name>
<packaging>jar</packaging>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,10 @@ public void delete() throws IOException {
path2.delete();
}

public boolean exists() {
return path1.exists() || path2.exists();
}

public LocalDateTime getNewestModifiedTime() {
if (path1.modified() == null && path2.modified() == null)
return null;
Expand Down

0 comments on commit 403abf0

Please sign in to comment.