Updated Branches: refs/heads/develop 7c1f7d766 -> 17834813c
removed death code in the ldpath web service Project: http://git-wip-us.apache.org/repos/asf/marmotta/repo Commit: http://git-wip-us.apache.org/repos/asf/marmotta/commit/6e410dbe Tree: http://git-wip-us.apache.org/repos/asf/marmotta/tree/6e410dbe Diff: http://git-wip-us.apache.org/repos/asf/marmotta/diff/6e410dbe Branch: refs/heads/develop Commit: 6e410dbe72852b6121810c13c44fbdf0a1bb6ff1 Parents: 7c1f7d7 Author: Sergio Fernández <[email protected]> Authored: Mon Dec 16 08:48:07 2013 +0100 Committer: Sergio Fernández <[email protected]> Committed: Mon Dec 16 08:48:07 2013 +0100 ---------------------------------------------------------------------- .../marmotta/platform/ldpath/webservices/LDPathWebService.java | 6 ------ 1 file changed, 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/marmotta/blob/6e410dbe/platform/marmotta-ldpath/src/main/java/org/apache/marmotta/platform/ldpath/webservices/LDPathWebService.java ---------------------------------------------------------------------- diff --git a/platform/marmotta-ldpath/src/main/java/org/apache/marmotta/platform/ldpath/webservices/LDPathWebService.java b/platform/marmotta-ldpath/src/main/java/org/apache/marmotta/platform/ldpath/webservices/LDPathWebService.java index b86be40..62f4f70 100644 --- a/platform/marmotta-ldpath/src/main/java/org/apache/marmotta/platform/ldpath/webservices/LDPathWebService.java +++ b/platform/marmotta-ldpath/src/main/java/org/apache/marmotta/platform/ldpath/webservices/LDPathWebService.java @@ -154,12 +154,6 @@ public class LDPathWebService { con.begin(); if (ResourceUtils.isSubject(con, resourceUri)) { URI resource = con.getValueFactory().createURI(resourceUri); - // get list of configured namespaces; we make them available for the path language - Map<String,String> namespaces = new HashMap<String, String>(); - for(Namespace ns : iterable(con.getNamespaces())) { - namespaces.put(ns.getPrefix(),ns.getName()); - } - Map<String,List<Map<String,String>>> result = new HashMap<String, List<Map<String, String>>>();
