Return-Path: X-Original-To: apmail-pdfbox-commits-archive@www.apache.org Delivered-To: apmail-pdfbox-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 A21891755C for ; Mon, 6 Oct 2014 17:00:15 +0000 (UTC) Received: (qmail 72728 invoked by uid 500); 6 Oct 2014 17:00:15 -0000 Delivered-To: apmail-pdfbox-commits-archive@pdfbox.apache.org Received: (qmail 72704 invoked by uid 500); 6 Oct 2014 17:00:15 -0000 Mailing-List: contact commits-help@pdfbox.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@pdfbox.apache.org Delivered-To: mailing list commits@pdfbox.apache.org Received: (qmail 72695 invoked by uid 99); 6 Oct 2014 17:00:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Oct 2014 17:00:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Oct 2014 17:00:14 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 127A723889E2; Mon, 6 Oct 2014 16:59:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1629713 - /pdfbox/trunk/preflight/src/main/java/org/apache/pdfbox/preflight/font/container/FontContainer.java Date: Mon, 06 Oct 2014 16:59:53 -0000 To: commits@pdfbox.apache.org From: tilman@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20141006165954.127A723889E2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tilman Date: Mon Oct 6 16:59:53 2014 New Revision: 1629713 URL: http://svn.apache.org/r1629713 Log: PDFBOX-2299: fix typo Modified: pdfbox/trunk/preflight/src/main/java/org/apache/pdfbox/preflight/font/container/FontContainer.java Modified: pdfbox/trunk/preflight/src/main/java/org/apache/pdfbox/preflight/font/container/FontContainer.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/preflight/src/main/java/org/apache/pdfbox/preflight/font/container/FontContainer.java?rev=1629713&r1=1629712&r2=1629713&view=diff ============================================================================== --- pdfbox/trunk/preflight/src/main/java/org/apache/pdfbox/preflight/font/container/FontContainer.java (original) +++ pdfbox/trunk/preflight/src/main/java/org/apache/pdfbox/preflight/font/container/FontContainer.java Mon Oct 6 16:59:53 2014 @@ -173,7 +173,7 @@ public abstract class FontContainer { GlyphException e = new GlyphException(PreflightConstants.ERROR_FONTS_GLYPH_MISSING, cid, "The character \"" + cid + "\" in the font program \"" + this.font.getBaseFont() - + "\"is missing from the Charater Encoding."); + + "\" is missing from the Charater Encoding."); markCIDAsInvalid(cid, e); throw e; } @@ -183,7 +183,7 @@ public abstract class FontContainer { GlyphException e = new GlyphException(PreflightConstants.ERROR_FONTS_METRICS, cid, "Width of the character \"" + cid + "\" in the font program \"" + this.font.getBaseFont() - + "\"is inconsistent with the width in the PDF dictionary."); + + "\" is inconsistent with the width in the PDF dictionary."); markCIDAsInvalid(cid, e); throw e; }