Skip to content

Commit

Permalink
Remove IO throw from non-IO parse method
Browse files Browse the repository at this point in the history
  • Loading branch information
mbax committed Mar 1, 2015
1 parent 683ebf3 commit 1c425a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/kitteh/smcparser/SMCParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static SMCNode parse(InputStream stream) {
*
* @param input SMC content
* @return the SMC content in SMCNode form
* @throws InvalidSMCException for IO errors or invalid SMC content
* @throws InvalidSMCException for invalid SMC content
*/
public static SMCNode parse(String input) {
Matcher matcher = PATTERN.matcher(input);
Expand Down

0 comments on commit 1c425a7

Please sign in to comment.