From commits-return-4599-archive-asf-public=cust-asf.ponee.io@xmlgraphics.apache.org Thu Jul 4 09:25:43 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id A7766180595 for ; Thu, 4 Jul 2019 11:25:43 +0200 (CEST) Received: (qmail 90177 invoked by uid 500); 4 Jul 2019 09:25:43 -0000 Mailing-List: contact commits-help@xmlgraphics.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: general@xmlgraphics.apache.org Delivered-To: mailing list commits@xmlgraphics.apache.org Received: (qmail 90162 invoked by uid 99); 4 Jul 2019 09:25:43 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Jul 2019 09:25:43 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 30BD43A0069 for ; Thu, 4 Jul 2019 09:25:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1862543 - in /xmlgraphics/commons/trunk/src/main/java/org/apache/xmlgraphics/java2d: GraphicsConfigurationWithTransparency.java GraphicsConfigurationWithoutTransparency.java Date: Thu, 04 Jul 2019 09:25:38 -0000 To: commits@xmlgraphics.apache.org From: ssteiner@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20190704092539.30BD43A0069@svn01-us-west.apache.org> Author: ssteiner Date: Thu Jul 4 09:25:38 2019 New Revision: 1862543 URL: http://svn.apache.org/viewvc?rev=1862543&view=rev Log: FOP-2873: Update to PDFBox 2.0.16 Modified: xmlgraphics/commons/trunk/src/main/java/org/apache/xmlgraphics/java2d/GraphicsConfigurationWithTransparency.java xmlgraphics/commons/trunk/src/main/java/org/apache/xmlgraphics/java2d/GraphicsConfigurationWithoutTransparency.java Modified: xmlgraphics/commons/trunk/src/main/java/org/apache/xmlgraphics/java2d/GraphicsConfigurationWithTransparency.java URL: http://svn.apache.org/viewvc/xmlgraphics/commons/trunk/src/main/java/org/apache/xmlgraphics/java2d/GraphicsConfigurationWithTransparency.java?rev=1862543&r1=1862542&r2=1862543&view=diff ============================================================================== --- xmlgraphics/commons/trunk/src/main/java/org/apache/xmlgraphics/java2d/GraphicsConfigurationWithTransparency.java (original) +++ xmlgraphics/commons/trunk/src/main/java/org/apache/xmlgraphics/java2d/GraphicsConfigurationWithTransparency.java Thu Jul 4 09:25:38 2019 @@ -73,7 +73,7 @@ public class GraphicsConfigurationWithTr * @return the bounds of the document page */ public Rectangle getBounds() { - return null; + return new Rectangle(); } /** Modified: xmlgraphics/commons/trunk/src/main/java/org/apache/xmlgraphics/java2d/GraphicsConfigurationWithoutTransparency.java URL: http://svn.apache.org/viewvc/xmlgraphics/commons/trunk/src/main/java/org/apache/xmlgraphics/java2d/GraphicsConfigurationWithoutTransparency.java?rev=1862543&r1=1862542&r2=1862543&view=diff ============================================================================== --- xmlgraphics/commons/trunk/src/main/java/org/apache/xmlgraphics/java2d/GraphicsConfigurationWithoutTransparency.java (original) +++ xmlgraphics/commons/trunk/src/main/java/org/apache/xmlgraphics/java2d/GraphicsConfigurationWithoutTransparency.java Thu Jul 4 09:25:38 2019 @@ -84,6 +84,6 @@ public class GraphicsConfigurationWithou @Override public Rectangle getBounds() { - return null; + return new Rectangle(); } } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@xmlgraphics.apache.org For additional commands, e-mail: commits-help@xmlgraphics.apache.org