Skip to content

Commit

Permalink
Removed deprecated API.
Browse files Browse the repository at this point in the history
  • Loading branch information
vingar committed Jun 19, 2018
1 parent 7cb4d2c commit 56af6d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.ndgf</groupId>
<artifactId>dcache-endit-provider</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
<packaging>jar</packaging>

<name>dCache Endit provider</name>
Expand Down Expand Up @@ -67,6 +67,9 @@
<configuration>
<source>1.7</source>
<target>1.7</target>
<compilerArgs>
<arg>-Xlint:deprecation</arg>
</compilerArgs>
</configuration>
</plugin>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ public synchronized void configure(Map<String, String> properties) throws Illega
Files.deleteIfExists(requestFile);
}
} catch (IOException e) {
Throwables.propagate(e);
new RuntimeException(e);
// Throwables.propagate(e);
}

this.requestDir = requestDir;
Expand Down

0 comments on commit 56af6d8

Please sign in to comment.