Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 856C3200CE5 for ; Sun, 6 Aug 2017 13:03:41 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 83BD81645D7; Sun, 6 Aug 2017 11:03:41 +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 EA2591645D2 for ; Sun, 6 Aug 2017 13:03:40 +0200 (CEST) Received: (qmail 65235 invoked by uid 500); 6 Aug 2017 11:03:39 -0000 Mailing-List: contact dev-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Commons Developers List" Delivered-To: mailing list dev@commons.apache.org Received: (qmail 65224 invoked by uid 99); 6 Aug 2017 11:03:39 -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; Sun, 06 Aug 2017 11:03:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8BE31F1820; Sun, 6 Aug 2017 11:03:39 +0000 (UTC) From: kinow To: dev@commons.apache.org Reply-To: dev@commons.apache.org References: In-Reply-To: Subject: [GitHub] commons-imaging pull request #18: IMAGING-168 installing package with Swedis... Content-Type: text/plain Message-Id: <20170806110339.8BE31F1820@git1-us-west.apache.org> Date: Sun, 6 Aug 2017 11:03:39 +0000 (UTC) archived-at: Sun, 06 Aug 2017 11:03:41 -0000 Github user kinow commented on a diff in the pull request: https://github.com/apache/commons-imaging/pull/18#discussion_r131540224 --- Diff: src/main/java/org/apache/commons/imaging/formats/jpeg/iptc/IptcParser.java --- @@ -248,6 +258,35 @@ public PhotoshopApp13Data parsePhotoshopSegment(final byte[] bytes, return elements; } + private String getEncodingCharsetName(byte[] codedCharacterSet){ + final Character WHITESPACE = ' '; + String codedCharacterSetString = new String(codedCharacterSet); + try { + if (Charset.isSupported(codedCharacterSetString)) { + return codedCharacterSetString; + } + }catch (IllegalCharsetNameException e){ + --- End diff -- Might be worth to add at least one comment saying why these exceptions are not important, and that can be safely ignored. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org For additional commands, e-mail: dev-help@commons.apache.org