Remove IOException from parser interface
[Sone.git] / src / main / java / net / pterodactylus / sone / text / Parser.java
index e654223..531efa7 100644 (file)
@@ -38,9 +38,7 @@ public interface Parser<C extends ParserContext> {
         * @param source
         *            The text source
         * @return The parsed parts
-        * @throws IOException
-        *             if an I/O error occurs
         */
-       public Iterable<Part> parse(C context, String source) throws IOException;
+       public Iterable<Part> parse(C context, String source);
 
 }