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 6AB8318C96 for ; Sat, 19 Mar 2016 05:08:11 +0000 (UTC) Received: (qmail 39537 invoked by uid 500); 19 Mar 2016 05:08:10 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 39391 invoked by uid 500); 19 Mar 2016 05:08:10 -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 36939 invoked by uid 99); 19 Mar 2016 05:08:08 -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; Sat, 19 Mar 2016 05:08:08 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BC28DE024E; Sat, 19 Mar 2016 05:08:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: clebertsuconic@apache.org To: commits@activemq.apache.org Date: Sat, 19 Mar 2016 05:08:57 -0000 Message-Id: <094962e82981463fa535d1a5d4f94e6c@git.apache.org> In-Reply-To: <097bf1c283774e2ea2098fcd9461446c@git.apache.org> References: <097bf1c283774e2ea2098fcd9461446c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [51/67] [abbrv] activemq-artemis git commit: fixed compilation error fixed compilation error Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/d8b54313 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/d8b54313 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/d8b54313 Branch: refs/heads/refactor-openwire Commit: d8b543132ef79b85fed3a1c6f3e09a20b21bd085 Parents: 006b9ba Author: Howard Gao Authored: Mon Mar 7 22:20:49 2016 +0800 Committer: Clebert Suconic Committed: Sat Mar 19 01:07:37 2016 -0400 ---------------------------------------------------------------------- .../artemis/core/protocol/openwire/OpenWireConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/d8b54313/artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/OpenWireConnection.java ---------------------------------------------------------------------- diff --git a/artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/OpenWireConnection.java b/artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/OpenWireConnection.java index 5880f07..5fc26b0 100644 --- a/artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/OpenWireConnection.java +++ b/artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/OpenWireConnection.java @@ -841,7 +841,7 @@ public class OpenWireConnection extends AbstractRemotingConnection implements Se // This will listen for commands throught the protocolmanager public class CommandProcessor implements CommandVisitor { - private AMQConnectionContext getContext() { + public AMQConnectionContext getContext() { return OpenWireConnection.this.getContext(); }