Author: tilman Date: Fri Jan 23 22:17:42 2015 New Revision: 1654410 URL: http://svn.apache.org/r1654410 Log: PDFBOX-2576: methods in interfaces are always public abstract
Modified: pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/ttf/Type1Equivalent.java Modified: pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/ttf/Type1Equivalent.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/ttf/Type1Equivalent.java?rev=1654410&r1=1654409&r2=1654410&view=diff ============================================================================== --- pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/ttf/Type1Equivalent.java (original) +++ pdfbox/trunk/fontbox/src/main/java/org/apache/fontbox/ttf/Type1Equivalent.java Fri Jan 23 22:17:42 2015 @@ -33,7 +33,7 @@ public interface Type1Equivalent /** * The PostScript name of the font. */ - public String getName() throws IOException; + String getName() throws IOException; /** * Returns the Type 1 CharString for the character with the given name. @@ -41,7 +41,7 @@ public interface Type1Equivalent * @return glyph path * @throws IOException if the path could not be read */ - public GeneralPath getPath(String name) throws IOException; + GeneralPath getPath(String name) throws IOException; /** * Returns the advance width for the character with the given name. @@ -49,21 +49,21 @@ public interface Type1Equivalent * @return glyph advance width * @throws IOException if the path could not be read */ - public float getWidth(String name) throws IOException; + float getWidth(String name) throws IOException; /** * Returns true if the font contains the given glyph. * @param name PostScript glyph name */ - public boolean hasGlyph(String name) throws IOException; + boolean hasGlyph(String name) throws IOException; /** * Returns the PostScript Encoding vector for the font. */ - public Encoding getEncoding() throws IOException; + Encoding getEncoding() throws IOException; /** * Returns the font's bounding box in PostScript units. */ - public abstract BoundingBox getFontBBox() throws IOException; + BoundingBox getFontBBox() throws IOException; }