aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/util/ASCII85InputStream.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop/util/ASCII85InputStream.java')
-rw-r--r--src/java/org/apache/fop/util/ASCII85InputStream.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/java/org/apache/fop/util/ASCII85InputStream.java b/src/java/org/apache/fop/util/ASCII85InputStream.java
index 7e6e57821..d9b3fae91 100644
--- a/src/java/org/apache/fop/util/ASCII85InputStream.java
+++ b/src/java/org/apache/fop/util/ASCII85InputStream.java
@@ -31,7 +31,6 @@ import java.io.IOException;
* The filter is described in chapter 3.13.3 of the PostScript Language
* Reference (third edition).
*
- * @author <a href="mailto:jeremias@apache.org">Jeremias Maerki</a>
* @version $Id$
*/
public class ASCII85InputStream extends InputStream
@@ -119,7 +118,6 @@ public class ASCII85InputStream extends InputStream
} else {
int cIndex = 0;
tuple = (buf - START) * POW85[cIndex];
- //System.out.println(cIndex + ": " + Long.toHexString(tuple));
cIndex++;
while (cIndex < 5) {
buf = filteredRead();
@@ -131,7 +129,6 @@ public class ASCII85InputStream extends InputStream
throw new IOException("Illegal 'z' within tuple");
} else {
tuple += (buf - START) * POW85[cIndex];
- //System.out.println(cIndex + ": " + Long.toHexString(tuple));
cIndex++;
}
}