Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-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 78AB818D8A for ; Mon, 27 Jul 2015 08:50:54 +0000 (UTC) Received: (qmail 13891 invoked by uid 500); 27 Jul 2015 08:42:50 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 13735 invoked by uid 500); 27 Jul 2015 08:42:50 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 12820 invoked by uid 99); 27 Jul 2015 08:42:50 -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, 27 Jul 2015 08:42:50 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 20605E0016; Mon, 27 Jul 2015 08:42:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: widodh@apache.org To: commits@cloudstack.apache.org Date: Mon, 27 Jul 2015 08:43:14 -0000 Message-Id: <304d6bfcc8de44d4a7ba0183e6eea4be@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [26/50] [abbrv] git commit: updated refs/heads/reporter to 3e1816d CLOUDSTACK-8658: make initializer static instead of default Signed-off-by: wilderrodrigues Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/822ea9c7 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/822ea9c7 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/822ea9c7 Branch: refs/heads/reporter Commit: 822ea9c7875f1e0da1813c4812e4c4a32971ba9a Parents: b400608 Author: Daan Hoogland Authored: Tue Jul 21 17:42:41 2015 +0200 Committer: wilderrodrigues Committed: Wed Jul 22 10:06:31 2015 +0200 ---------------------------------------------------------------------- utils/src/com/cloud/utils/StringUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/822ea9c7/utils/src/com/cloud/utils/StringUtils.java ---------------------------------------------------------------------- diff --git a/utils/src/com/cloud/utils/StringUtils.java b/utils/src/com/cloud/utils/StringUtils.java index 73b49fc..1dc0f9f 100644 --- a/utils/src/com/cloud/utils/StringUtils.java +++ b/utils/src/com/cloud/utils/StringUtils.java @@ -35,7 +35,7 @@ public class StringUtils { private static Charset preferredACSCharset; - { + static { String preferredCharset = "UTF-8"; if (Charset.isSupported(preferredCharset)) { preferredACSCharset = Charset.forName(preferredCharset);