Skip to content

Commit

Permalink
update for checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Scrubbius committed Nov 6, 2018
1 parent c82b8e1 commit d071a94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@
import static java.util.Objects.requireNonNull;

import java.io.File;
import java.io.FileNotFoundException;
import java.util.List;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerConfigurationException;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ public CommandResult execute(Model model, CommandHistory history) throws Command
* @param list to contain the list of volunteers from model
* @param index to hold the list of indexes to export
*/
private void createVolunteerCsv(ObservableList<Volunteer> list, ArrayList<Index> index) throws FileNotFoundException {
private void createVolunteerCsv(ObservableList<Volunteer> list,
ArrayList<Index> index) throws FileNotFoundException {
// Setting up file path
File output = new File(SAVE_PATH
+ Integer.toString(index.size()) + "volunteers.csv");
Expand Down

0 comments on commit d071a94

Please sign in to comment.