]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Disable check for maximum line length because of a problem reported in FOP 0.20.5.
authorJeremias Maerki <jeremias@apache.org>
Tue, 22 Jun 2004 18:42:27 +0000 (18:42 +0000)
committerJeremias Maerki <jeremias@apache.org>
Tue, 22 Jun 2004 18:42:27 +0000 (18:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197742 13f79535-47bb-0310-9956-ffa450edef68

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

index 4a64f626cda02f7cfbb02b2a11d6cbcce1c417bc..e69789cd988cb9e1f065f74e641fdaebd13af198 100644 (file)
@@ -113,9 +113,10 @@ public class PSGenerator {
      * @exception IOException  In case of an I/O problem
      */
     public void write(String cmd) throws IOException {
+        /* @todo Check disabled until clarification.
         if (cmd.length() > 255) {
             throw new RuntimeException("PostScript command exceeded limit of 255 characters");
-        }
+        } */
         out.write(cmd.getBytes("US-ASCII"));
     }
 
@@ -130,6 +131,13 @@ public class PSGenerator {
         newLine();
     }
 
+    /**
+     * Writes a comment to the stream and ends the line. Output of comments can 
+     * be disabled to reduce the size of the generated file. 
+     * 
+     * @param comment          comment to write
+     * @exception IOException  In case of an I/O problem
+     */
     public void commentln(String comment) throws IOException {
         if (this.commentsEnabled) {
             writeln(comment);