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.
2 parents 3a0803d + 40459bf commit b346920Copy full SHA for b346920
build.gradle
@@ -41,7 +41,7 @@ checkstyle {
41
toolVersion = '10.2'
42
}
43
44
-run{
+run {
45
standardInput = System.in
46
enableAssertions = true
47
src/main/java/seedu/duke/flashcard/FlashcardStorage.java
@@ -85,7 +85,9 @@ public FlashcardList loadFlashcards() throws FileNotFoundException{
85
flashcardList.add(loadFlashcard(flashTokens));
86
87
88
- System.out.println(String.format(" There are currently %d flashcards in the savefile", flashcardList.getSize()));
+ System.out.println(String.format(
89
+ " There are currently %d flashcards in the savefile",
90
+ flashcardList.getSize()));
91
92
return flashcardList;
93
0 commit comments