Skip to content

Commit

Permalink
Merge pull request #171 from AY2324S2-CS2103T-W08-3/csv-issue
Browse files Browse the repository at this point in the history
Fix issue #128
  • Loading branch information
wilsonwid authored Apr 15, 2024
2 parents 3b0a314 + 8cadcd3 commit 784392e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ private List<JsonAdaptedPerson> readPersonsFromCsv(File file) throws DataLoading
* @return A List of JsonAdaptedPerson present inside the {@code file}.
* @throws IOException If the {@code file} is unable to be loaded.
*/
private List<JsonAdaptedPerson> getPersonsFromCsv(String filePath) throws IOException, DataLoadingException {
private List<JsonAdaptedPerson> getPersonsFromCsv(String filePath) throws IOException {
List<JsonAdaptedPerson> persons = new ArrayList<>();
BufferedReader br = new BufferedReader(new FileReader(filePath));
String line = "";
Expand Down

0 comments on commit 784392e

Please sign in to comment.