You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@marmotta.apache.org by ss...@apache.org on 2014/01/14 15:09:28 UTC

git commit: synchronous remove of triples from registry

Updated Branches:
  refs/heads/develop 0aeedd8ab -> ebf1e6452


synchronous remove of triples from registry


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

Branch: refs/heads/develop
Commit: ebf1e6452c0c4a1f56c62ddb4d497f6f0f93589f
Parents: 0aeedd8
Author: Sebastian Schaffert <ss...@apache.org>
Authored: Tue Jan 14 15:09:23 2014 +0100
Committer: Sebastian Schaffert <ss...@apache.org>
Committed: Tue Jan 14 15:09:23 2014 +0100

----------------------------------------------------------------------
 .../marmotta/kiwi/persistence/registry/CacheTripleRegistry.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/marmotta/blob/ebf1e645/libraries/kiwi/kiwi-triplestore/src/main/java/org/apache/marmotta/kiwi/persistence/registry/CacheTripleRegistry.java
----------------------------------------------------------------------
diff --git a/libraries/kiwi/kiwi-triplestore/src/main/java/org/apache/marmotta/kiwi/persistence/registry/CacheTripleRegistry.java b/libraries/kiwi/kiwi-triplestore/src/main/java/org/apache/marmotta/kiwi/persistence/registry/CacheTripleRegistry.java
index 2c68d68..8d2d118 100644
--- a/libraries/kiwi/kiwi-triplestore/src/main/java/org/apache/marmotta/kiwi/persistence/registry/CacheTripleRegistry.java
+++ b/libraries/kiwi/kiwi-triplestore/src/main/java/org/apache/marmotta/kiwi/persistence/registry/CacheTripleRegistry.java
@@ -108,6 +108,6 @@ public class CacheTripleRegistry implements KiWiTripleRegistry {
      */
     @Override
     public void deleteKey(IntArray key) {
-        cache.removeAsync(key.longHashCode());
+        cache.remove(key.longHashCode());
     }
 }