Skip to content

Commit

Permalink
try 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeyang-Li committed Apr 1, 2019
1 parent 7eb9945 commit a2e4056
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ dependencies {
implementation group: 'com.google.guava', name: 'guava', version: '19.0'

compile group: 'com.opencsv', name: 'opencsv', version: '4.1'

testImplementation group: 'junit', name: 'junit', version: '4.12'
testImplementation group: 'org.testfx', name: 'testfx-core', version: testFxVersion, {
exclude group: 'org.testfx', module: 'testfx-internal-java8'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/export/ExportManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ public void saveFilteredTasks(ObservableList<Task> filteredTasks, Path filePath)
}
JsonFileStorage.saveDataToFile(filePath, new JsonSerializableTaskBook(filteredTasks));
}
}
}
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/export/Import.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ public interface Import {
*/
Optional<ReadOnlyTaskBook> readTaskBook(Path filePath) throws DataConversionException, FileNotFoundException;

}
}

0 comments on commit a2e4056

Please sign in to comment.