Skip to content

Commit

Permalink
Correcting syntax error in ImportVolunteerCsvCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
Scrubbius committed Nov 6, 2018
1 parent 279d5f2 commit 5c77c98
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public CommandResult execute(Model model, CommandHistory history) throws Command
String[] arrayLine = currLine.split(",(?=([^\"]*\"[^\"]*\")*[^\"]*$)");
String args = "";
for (String i : arrayLine) {
if (String i != null){
if ( i != null) {
args += i + " ";
}
}
Expand Down

0 comments on commit 5c77c98

Please sign in to comment.