Remove modifier from interface.
[Sone.git] / src / main / java / net / pterodactylus / sone / text / Parser.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;
 
 }