X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ftext%2FParser.java;h=e65422399b8b052aeb62fec28dfd807d69bcad0a;hp=3a80db8cb3c488367ef6290705dcb3bee4a796ba;hb=662bcd45433c0ab480ad0e52f3e72e9e886bdfc6;hpb=a47643aed43d118ca68044f95451bb5374cdb332 diff --git a/src/main/java/net/pterodactylus/sone/text/Parser.java b/src/main/java/net/pterodactylus/sone/text/Parser.java index 3a80db8..e654223 100644 --- a/src/main/java/net/pterodactylus/sone/text/Parser.java +++ b/src/main/java/net/pterodactylus/sone/text/Parser.java @@ -1,5 +1,5 @@ /* - * Sone - Parser.java - Copyright © 2010–2012 David Roden + * Sone - Parser.java - Copyright © 2010–2015 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -41,6 +41,6 @@ public interface Parser { * @throws IOException * if an I/O error occurs */ - public Iterable parse(C context, Reader source) throws IOException; + public Iterable parse(C context, String source) throws IOException; }