You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by le...@apache.org on 2009/11/01 19:55:07 UTC

svn commit: r831726 - in /incubator/pdfbox/trunk/src/main/java/org/apache/pdfbox/util/operator/pagedrawer: BeginInlineImage.java Invoke.java

Author: lehmi
Date: Sun Nov  1 18:55:07 2009
New Revision: 831726

URL: http://svn.apache.org/viewvc?rev=831726&view=rev
Log:
PDFBOX-552: remove TABs I've added during my last commit after updating my IDE

Modified:
    incubator/pdfbox/trunk/src/main/java/org/apache/pdfbox/util/operator/pagedrawer/BeginInlineImage.java
    incubator/pdfbox/trunk/src/main/java/org/apache/pdfbox/util/operator/pagedrawer/Invoke.java

Modified: incubator/pdfbox/trunk/src/main/java/org/apache/pdfbox/util/operator/pagedrawer/BeginInlineImage.java
URL: http://svn.apache.org/viewvc/incubator/pdfbox/trunk/src/main/java/org/apache/pdfbox/util/operator/pagedrawer/BeginInlineImage.java?rev=831726&r1=831725&r2=831726&view=diff
==============================================================================
--- incubator/pdfbox/trunk/src/main/java/org/apache/pdfbox/util/operator/pagedrawer/BeginInlineImage.java (original)
+++ incubator/pdfbox/trunk/src/main/java/org/apache/pdfbox/util/operator/pagedrawer/BeginInlineImage.java Sun Nov  1 18:55:07 2009
@@ -106,9 +106,9 @@
         // the same dimension than the page to be printed
         if (clip == null)
         {
-        	clip = new Rectangle(pageSize);
+            clip = new Rectangle(pageSize);
         }
-    	graphics.setClip(clip);
+        graphics.setClip(clip);
         graphics.drawImage( awtImage, at, null );
     }
 }
\ No newline at end of file

Modified: incubator/pdfbox/trunk/src/main/java/org/apache/pdfbox/util/operator/pagedrawer/Invoke.java
URL: http://svn.apache.org/viewvc/incubator/pdfbox/trunk/src/main/java/org/apache/pdfbox/util/operator/pagedrawer/Invoke.java?rev=831726&r1=831725&r2=831726&view=diff
==============================================================================
--- incubator/pdfbox/trunk/src/main/java/org/apache/pdfbox/util/operator/pagedrawer/Invoke.java (original)
+++ incubator/pdfbox/trunk/src/main/java/org/apache/pdfbox/util/operator/pagedrawer/Invoke.java Sun Nov  1 18:55:07 2009
@@ -117,9 +117,9 @@
                 // the same dimension than the page to be printed
                 if (clip == null)
                 {
-                	clip = new Rectangle(pageSize);
+                    clip = new Rectangle(pageSize);
                 }
-            	graphics.setClip(clip);
+                graphics.setClip(clip);
                 graphics.drawImage( awtImage, at, null );
             }
             catch( Exception e )