diff --git a/pom.xml b/pom.xml index 3561e7a..6ec380b 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.aksw AGDISTIS - 0.1.0 + 0.4.0 war @@ -60,7 +60,7 @@ - 1.7 + 1.6 UTF-8 UTF-8 4.0 diff --git a/src/main/java/org/aksw/agdistis/algorithm/NEDAlgo_HITS.java b/src/main/java/org/aksw/agdistis/algorithm/NEDAlgo_HITS.java index a0b1b22..5d23a33 100644 --- a/src/main/java/org/aksw/agdistis/algorithm/NEDAlgo_HITS.java +++ b/src/main/java/org/aksw/agdistis/algorithm/NEDAlgo_HITS.java @@ -14,7 +14,6 @@ import org.aksw.agdistis.graph.HITS; import org.aksw.agdistis.graph.Node; import org.aksw.agdistis.util.TripleIndex; -import org.openrdf.repository.RepositoryException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -93,7 +92,7 @@ public void run(Document document) { } } - } catch (RepositoryException | IOException | InterruptedException e) { + } catch (Exception e) { log.error("AGDISTIS cannot be run on this document.", e); } }