소스 검색

Disable check for maximum line length because of a problem reported in FOP 0.20.5.


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197742 13f79535-47bb-0310-9956-ffa450edef68
pull/30/head
Jeremias Maerki 20 년 전
부모
커밋
33adeb4fa5
1개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  1. 9
    1
      src/java/org/apache/fop/render/ps/PSGenerator.java

+ 9
- 1
src/java/org/apache/fop/render/ps/PSGenerator.java 파일 보기

@@ -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);

Loading…
취소
저장