Remove modifier from interface.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 9 Nov 2013 12:20:29 +0000 (13:20 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 28 Feb 2014 21:25:57 +0000 (22:25 +0100)
src/main/java/net/pterodactylus/sone/text/Parser.java
src/main/java/net/pterodactylus/sone/text/Part.java

index 2a7700a..cdd2d6a 100644 (file)
@@ -41,6 +41,6 @@ public interface Parser<C extends ParserContext> {
         * @throws IOException
         *             if an I/O error occurs
         */
-       public Iterable<Part> parse(C context, Reader source) throws IOException;
+       Iterable<Part> parse(C context, Reader source) throws IOException;
 
 }
index 4c1a188..0c21dd0 100644 (file)
@@ -32,6 +32,6 @@ public interface Part {
         *
         * @return The plain text of this part
         */
-       public String getText();
+       String getText();
 
 }