You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commonsrdf.apache.org by gg...@apache.org on 2016/11/16 00:03:04 UTC

incubator-commonsrdf git commit: The declared exception IOException is not actually thrown.

Repository: incubator-commonsrdf
Updated Branches:
  refs/heads/master 87ac556b7 -> c900534ec


The declared exception IOException is not actually thrown.

Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/c900534e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/c900534e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/c900534e

Branch: refs/heads/master
Commit: c900534ec0a5fa6d2730821f1ec80530c70415af
Parents: 87ac556
Author: Gary Gregory <gg...@apache.org>
Authored: Tue Nov 15 16:02:49 2016 -0800
Committer: Gary Gregory <gg...@apache.org>
Committed: Tue Nov 15 16:02:49 2016 -0800

----------------------------------------------------------------------
 .../java/org/apache/commons/rdf/rdf4j/NativeStoreGraphTest.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/c900534e/rdf4j/src/test/java/org/apache/commons/rdf/rdf4j/NativeStoreGraphTest.java
----------------------------------------------------------------------
diff --git a/rdf4j/src/test/java/org/apache/commons/rdf/rdf4j/NativeStoreGraphTest.java b/rdf4j/src/test/java/org/apache/commons/rdf/rdf4j/NativeStoreGraphTest.java
index c496338..dc146ff 100644
--- a/rdf4j/src/test/java/org/apache/commons/rdf/rdf4j/NativeStoreGraphTest.java
+++ b/rdf4j/src/test/java/org/apache/commons/rdf/rdf4j/NativeStoreGraphTest.java
@@ -142,7 +142,7 @@ public class NativeStoreGraphTest extends AbstractGraphTest {
     public Timeout globalTimeout = Timeout.seconds(15);
 
     @After
-    public void shutdownAndDelete() throws IOException {
+    public void shutdownAndDelete() {
         // must shutdown before we delete
         if (repository != null) {
             System.out.print("Shutting down rdf4j repository " + repository + "...");