Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0FA6918A27 for ; Mon, 17 Aug 2015 02:56:44 +0000 (UTC) Received: (qmail 44410 invoked by uid 500); 17 Aug 2015 02:56:43 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 44269 invoked by uid 500); 17 Aug 2015 02:56:43 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 44159 invoked by uid 99); 17 Aug 2015 02:56:43 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Aug 2015 02:56:43 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 99459DFC78; Mon, 17 Aug 2015 02:56:43 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: clebertsuconic@apache.org To: commits@activemq.apache.org Date: Mon, 17 Aug 2015 02:56:45 -0000 Message-Id: <6752c8c9762d46de945ad6ae057b76b3@git.apache.org> In-Reply-To: <9447ee2bf1724514b53859e119769dcf@git.apache.org> References: <9447ee2bf1724514b53859e119769dcf@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [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ä Authored: Sun Aug 16 15:31:35 2015 +0300 Committer: Ville Skyttä 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 implemen // Static -------------------------------------------------------- - public abstract interface ValueCache { + public interface ValueCache { boolean isLive(); }