diff options
author | Christian Geisert <chrisg@apache.org> | 2002-09-02 17:48:26 +0000 |
---|---|---|
committer | Christian Geisert <chrisg@apache.org> | 2002-09-02 17:48:26 +0000 |
commit | 0706f737a76da81f1e53a07341a3a57e8d759d03 (patch) | |
tree | 81b67faa0f1a8530cdd08de625ac3acd973e2e4f /src/org/apache/fop/fonts | |
parent | b354578c727c5198ac7e2741cd15586786374a1d (diff) | |
download | xmlgraphics-fop-0706f737a76da81f1e53a07341a3a57e8d759d03.tar.gz xmlgraphics-fop-0706f737a76da81f1e53a07341a3a57e8d759d03.zip |
fixed compile error
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195139 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/fonts')
-rw-r--r-- | src/org/apache/fop/fonts/TTFSubSetFile.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/apache/fop/fonts/TTFSubSetFile.java b/src/org/apache/fop/fonts/TTFSubSetFile.java index e8d3e34cf..065d25b7d 100644 --- a/src/org/apache/fop/fonts/TTFSubSetFile.java +++ b/src/org/apache/fop/fonts/TTFSubSetFile.java @@ -577,7 +577,7 @@ public class TTFSubSetFile extends TTFFile { * Check if TrueType collection, and that the name * exists in the collection */ - if (!checkTTC(in, name, false)) + if (!checkTTC(in, name)) throw new IOException("Failed to read font"); output = new byte[in.getFileSize()]; |