You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlgraphics.apache.org by ss...@apache.org on 2019/07/04 09:25:38 UTC

svn commit: r1862543 - in /xmlgraphics/commons/trunk/src/main/java/org/apache/xmlgraphics/java2d: GraphicsConfigurationWithTransparency.java GraphicsConfigurationWithoutTransparency.java

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