Skip to content

Commit

Permalink
Configuration: don't require a space after commas
Browse files Browse the repository at this point in the history
  • Loading branch information
Gama11 committed Apr 12, 2018
1 parent d7676e1 commit f78953c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rv/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ private static String getNextString(BufferedReader in) throws IOException
private static String[] getNextStringList(BufferedReader in) throws IOException
{
String str = getVal(getNextLine(in));
return str.split(", ");
return str.split(", ?");
}

private static void writeSection(Writer out, String name) throws IOException
Expand Down

0 comments on commit f78953c

Please sign in to comment.