]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Static method accessed in static manner.
authorPeter Bernard West <pbwest@apache.org>
Fri, 20 Jun 2003 10:21:50 +0000 (10:21 +0000)
committerPeter Bernard West <pbwest@apache.org>
Fri, 20 Jun 2003 10:21:50 +0000 (10:21 +0000)
Spaces before ';' removed.
Array specifiers moved.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196512 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/render/ps/PSRenderer.java

index 1f249c975e504be135065e53da0787f459d62b3e..33987f1eb9117f126feb6b350006876797b48f3c 100644 (file)
@@ -464,7 +464,7 @@ public class PSRenderer extends AbstractRenderer {
         for (int i = 0; i < text.length(); i++) {
             final char c = text.charAt(i);
             final char mapped = font.mapChar(c);
-            gen.escapeChar(mapped, sb);
+            PSGenerator.escapeChar(mapped, sb);
         }
         sb.append(") t");
         writeln(sb.toString());
@@ -642,7 +642,7 @@ public class PSRenderer extends AbstractRenderer {
         saveGraphicsState();
         // multiply with current CTM
         //writeln(CTMHelper.toPDFString(ctm) + " cm\n");
-        final double matrix[] = ctm.toArray();
+        final double[] matrix = ctm.toArray();
         concatMatrix(matrix);
         
         // Set clip?
@@ -753,7 +753,7 @@ public class PSRenderer extends AbstractRenderer {
                 //saveGraphicsState();
             }
 
-            float bwidth = bps.width ;
+            float bwidth = bps.width;
             updateColor(bps.color, false, null);
             writeln(bwidth + " setlinewidth");
 
@@ -770,7 +770,7 @@ public class PSRenderer extends AbstractRenderer {
                 //saveGraphicsState();
             }
 
-            float bwidth = bps.width ;
+            float bwidth = bps.width;
             updateColor(bps.color, false, null);
             writeln(bwidth + " setlinewidth");
 
@@ -788,7 +788,7 @@ public class PSRenderer extends AbstractRenderer {
                 //saveGraphicsState();
             }
 
-            float bwidth = bps.width ;
+            float bwidth = bps.width;
             updateColor(bps.color, false, null);
             writeln(bwidth + " setlinewidth");
 
@@ -806,7 +806,7 @@ public class PSRenderer extends AbstractRenderer {
                 //saveGraphicsState();
             }
 
-            float bwidth = bps.width ;
+            float bwidth = bps.width;
             updateColor(bps.color, false, null);
             writeln(bwidth + " setlinewidth");
             drawLine(sx - bwidth / 2, starty, sx - bwidth / 2, endy);