Clean up some imports
[Sone.git] / src / main / java / net / pterodactylus / sone / text / Parser.java
index ca26a79..ea3a81c 100644 (file)
@@ -17,7 +17,6 @@
 
 package net.pterodactylus.sone.text;
 
-import java.io.IOException;
 import java.io.Reader;
 import javax.annotation.Nonnull;
 import javax.annotation.Nullable;
@@ -35,13 +34,13 @@ public interface Parser<C extends ParserContext> {
        /**
         * Create one or more {@link Part}s from the given text source.
         *
-        * @param context
-        *            The parser context (may be {@code null})
         * @param source
         *            The text source
+        * @param context
+        *            The parser context (may be {@code null})
         * @return The parsed parts
         */
        @Nonnull
-       Iterable<Part> parse(@Nullable C context, @Nonnull String source);
+       Iterable<Part> parse(@Nonnull String source, @Nullable C context);
 
 }