From dev-return-63130-archive-asf-public=cust-asf.ponee.io@activemq.apache.org Mon Jan 8 15:47:50 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id 9F123180607 for ; Mon, 8 Jan 2018 15:47:50 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 8E55A160C2C; Mon, 8 Jan 2018 14:47:50 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id C4656160C1E for ; Mon, 8 Jan 2018 15:47:49 +0100 (CET) Received: (qmail 90426 invoked by uid 500); 8 Jan 2018 14:47:48 -0000 Mailing-List: contact dev-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 dev@activemq.apache.org Received: (qmail 90415 invoked by uid 99); 8 Jan 2018 14:47:48 -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, 08 Jan 2018 14:47:48 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 75E68DFC3E; Mon, 8 Jan 2018 14:47:48 +0000 (UTC) From: clebertsuconic To: dev@activemq.apache.org Reply-To: dev@activemq.apache.org References: In-Reply-To: Subject: [GitHub] activemq-artemis pull request #1753: ARTEMIS-1573 Improve UTF translation al... Content-Type: text/plain Message-Id: <20180108144748.75E68DFC3E@git1-us-west.apache.org> Date: Mon, 8 Jan 2018 14:47:48 +0000 (UTC) Github user clebertsuconic commented on a diff in the pull request: https://github.com/apache/activemq-artemis/pull/1753#discussion_r160160624 --- Diff: artemis-commons/src/main/java/org/apache/activemq/artemis/utils/UTF8Util.java --- @@ -34,7 +35,7 @@ private static final boolean isTrace = ActiveMQUtilLogger.LOGGER.isTraceEnabled(); - private static final ThreadLocal> currenBuffer = new ThreadLocal<>(); + private static final FastThreadLocal> currentBuffer = new FastThreadLocal<>(); --- End diff -- @michaelandrepearce +1 ---