]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Removed unused methods
authorVincent Hennebert <vhennebert@apache.org>
Tue, 29 May 2012 15:32:11 +0000 (15:32 +0000)
committerVincent Hennebert <vhennebert@apache.org>
Tue, 29 May 2012 15:32:11 +0000 (15:32 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_TrueTypeInPostScript@1343776 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fonts/truetype/TTFSubSetFile.java

index e217ec1b66472958d04e3ffc2082748693a85be2..094716a6636d773ee602cdc467c4ee8acde9878c 100644 (file)
@@ -753,32 +753,6 @@ public class TTFSubSetFile extends TTFFile {
         output[pos + 3] = b4;
     }
 
-    /**
-     * Read a signed short value at given position
-     */
-    private short readShort(int pos) {
-        int ret = readUShort(pos);
-        return (short)ret;
-    }
-
-    /**
-     * Read a unsigned short value at given position
-     */
-    private int readUShort(int pos) {
-        int ret = output[pos];
-        if (ret < 0) {
-            ret += 256;
-        }
-        ret = ret << 8;
-        if (output[pos + 1] < 0) {
-            ret |= output[pos + 1] + 256;
-        } else {
-            ret |= output[pos + 1];
-        }
-
-        return ret;
-    }
-
     /**
      * Create a padding in the fontfile to align
      * on a 4-byte boundary
@@ -805,9 +779,6 @@ public class TTFSubSetFile extends TTFFile {
         return (i - 1);
     }
 
-    private int log2(int num) {
-        return (int)(Math.log(num) / Math.log(2));
-    }
 
     private void updateCheckSum(int tableStart, int tableSize, TTFTableName tableName) {
         int checksum = getCheckSum(output, tableStart, tableSize);