You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2015/08/17 04:56:45 UTC

[3/6] activemq-artemis git commit: Remove redundant abstract modifier

Remove redundant abstract modifier


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/9be47ad1
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/9be47ad1
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/9be47ad1

Branch: refs/heads/master
Commit: 9be47ad1454d424397caf78d0620d015e26a8223
Parents: eb40738
Author: Ville Skyttä <vi...@iki.fi>
Authored: Sun Aug 16 15:31:35 2015 +0300
Committer: Ville Skyttä <vi...@iki.fi>
Committed: Sun Aug 16 15:31:35 2015 +0300

----------------------------------------------------------------------
 .../java/org/apache/activemq/artemis/utils/SoftValueHashMap.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/9be47ad1/artemis-core-client/src/main/java/org/apache/activemq/artemis/utils/SoftValueHashMap.java
----------------------------------------------------------------------
diff --git a/artemis-core-client/src/main/java/org/apache/activemq/artemis/utils/SoftValueHashMap.java b/artemis-core-client/src/main/java/org/apache/activemq/artemis/utils/SoftValueHashMap.java
index 4eaf106..4a7675f 100644
--- a/artemis-core-client/src/main/java/org/apache/activemq/artemis/utils/SoftValueHashMap.java
+++ b/artemis-core-client/src/main/java/org/apache/activemq/artemis/utils/SoftValueHashMap.java
@@ -50,7 +50,7 @@ public class SoftValueHashMap<K, V extends SoftValueHashMap.ValueCache> implemen
 
    // Static --------------------------------------------------------
 
-   public abstract interface ValueCache {
+   public interface ValueCache {
 
       boolean isLive();
    }