From commits-return-61842-archive-asf-public=cust-asf.ponee.io@activemq.apache.org Wed Sep 23 19:53:04 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mxout1-he-de.apache.org (mxout1-he-de.apache.org [95.216.194.37]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 424C6180660 for ; Wed, 23 Sep 2020 21:53:04 +0200 (CEST) Received: from mail.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mxout1-he-de.apache.org (ASF Mail Server at mxout1-he-de.apache.org) with SMTP id A785663F73 for ; Wed, 23 Sep 2020 19:53:03 +0000 (UTC) Received: (qmail 19487 invoked by uid 500); 23 Sep 2020 19:53:03 -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 19478 invoked by uid 99); 23 Sep 2020 19:53:03 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Sep 2020 19:53:03 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id DB4208DCA0; Wed, 23 Sep 2020 19:53:02 +0000 (UTC) Date: Wed, 23 Sep 2020 19:53:02 +0000 To: "commits@activemq.apache.org" Subject: [activemq-artemis] branch master updated: ARTEMIS-2766 Fixing unused stopSet parameter MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <160089078257.20518.6082338047205918922@gitbox.apache.org> From: clebertsuconic@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: activemq-artemis X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: acdd8b4dcee70ec670692f55aee56c1d55fc33c1 X-Git-Newrev: feca90d47575d402df839ae8cbea66e804e76462 X-Git-Rev: feca90d47575d402df839ae8cbea66e804e76462 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. clebertsuconic pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git The following commit(s) were added to refs/heads/master by this push: new feca90d ARTEMIS-2766 Fixing unused stopSet parameter new 10a4441 This closes #3272 feca90d is described below commit feca90d47575d402df839ae8cbea66e804e76462 Author: franz1981 AuthorDate: Wed Sep 23 21:18:21 2020 +0200 ARTEMIS-2766 Fixing unused stopSet parameter --- .../activemq/artemis/protocol/amqp/broker/AMQPMessageSymbolSearch.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/broker/AMQPMessageSymbolSearch.java b/artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/broker/AMQPMessageSymbolSearch.java index eaf05ca..afd0706 100644 --- a/artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/broker/AMQPMessageSymbolSearch.java +++ b/artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/broker/AMQPMessageSymbolSearch.java @@ -80,7 +80,7 @@ final class AMQPMessageSymbolSearch { while (data.hasRemaining()) { TypeConstructor constructor = decoder.readConstructor(); final Class typeClass = constructor.getTypeClass(); - if (MSG_ANNOTATIONS_STOPSET.containsKey(typeClass)) { + if (stopSet.containsKey(typeClass)) { if (section.equals(typeClass)) { final int start = data.position(); constructor.skipValue();