Author: tilman
Date: Sun Feb  4 08:45:56 2018
New Revision: 1823082

URL: http://svn.apache.org/viewvc?rev=1823082&view=rev
Log:
PDFBOX-3709: remove deprecated methods

Modified:
    
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDTrueTypeFont.java

Modified: 
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDTrueTypeFont.java
URL: 
http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDTrueTypeFont.java?rev=1823082&r1=1823081&r2=1823082&view=diff
==============================================================================
--- 
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDTrueTypeFont.java
 (original)
+++ 
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDTrueTypeFont.java
 Sun Feb  4 08:45:56 2018
@@ -44,7 +44,6 @@ import org.apache.pdfbox.pdmodel.font.en
 import org.apache.pdfbox.pdmodel.font.encoding.MacOSRomanEncoding;
 import org.apache.pdfbox.pdmodel.font.encoding.StandardEncoding;
 import org.apache.pdfbox.pdmodel.font.encoding.Type1Encoding;
-import org.apache.pdfbox.pdmodel.font.encoding.WinAnsiEncoding;
 
 
 import static org.apache.pdfbox.pdmodel.font.UniUtil.getUniNameOfCodePoint;
@@ -214,39 +213,6 @@ public class PDTrueTypeFont extends PDSi
     }
 
     /**
-     * Loads a TTF to be embedded into a document as a simple font. Only 
supports WinAnsiEncoding.
-     *
-     * @param doc The PDF document that will hold the embedded font.
-     * @param file A TTF file.
-     * @return a PDTrueTypeFont instance.
-     * @throws IOException If there is an error loading the data.
-     *
-     * @deprecated Use {@link PDType0Font#load(PDDocument, File)} instead.
-     */
-    @Deprecated
-    public static PDTrueTypeFont loadTTF(PDDocument doc, File file) throws 
IOException
-    {
-        return new PDTrueTypeFont(doc, new TTFParser().parse(file), 
WinAnsiEncoding.INSTANCE, true);
-    }
-
-    /**
-     * Loads a TTF to be embedded into a document as a simple font. Only 
supports WinAnsiEncoding.
-     *
-     * @param doc The PDF document that will hold the embedded font.
-     * @param input A TTF file stream
-     * @return a PDTrueTypeFont instance.
-     * @throws IOException If there is an error loading the data.
-     *
-     * @deprecated Use {@link PDType0Font#load(PDDocument, InputStream)} 
instead.
-     */
-    @Deprecated
-    public static PDTrueTypeFont loadTTF(PDDocument doc, InputStream input) 
throws IOException
-    {
-        return new PDTrueTypeFont(doc, new TTFParser().parse(input), 
WinAnsiEncoding.INSTANCE,
-                true);
-    }
-
-    /**
      * Returns the PostScript name of the font.
      */
     public final String getBaseFont()


Reply via email to