We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ff8ab9 commit 9d865e3Copy full SHA for 9d865e3
build.gradle
@@ -54,6 +54,7 @@ shadowJar {
54
55
run{
56
standardInput = System.in
57
+ enableAssertions = true
58
}
59
60
checkstyle {
src/main/java/bot/Bot.java
@@ -34,7 +34,7 @@ public class Bot {
34
*/
35
public Bot() {
36
this.ui = new Ui();
37
- this.storage = new Storage("/data/tasks.txt");
+ this.storage = new Storage("data/tasks.txt");
38
try {
39
tasks = new TaskList(storage.load());
40
} catch (LoadingException e) {
0 commit comments