Skip to content

Commit 40459bf

Browse files
Fix codestyle violation
1 parent 3a0803d commit 40459bf

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ checkstyle {
4141
toolVersion = '10.2'
4242
}
4343

44-
run{
44+
run {
4545
standardInput = System.in
4646
enableAssertions = true
4747
}

src/main/java/seedu/duke/flashcard/FlashcardStorage.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ public FlashcardList loadFlashcards() throws FileNotFoundException{
8585
flashcardList.add(loadFlashcard(flashTokens));
8686
}
8787

88-
System.out.println(String.format(" There are currently %d flashcards in the savefile", flashcardList.getSize()));
88+
System.out.println(String.format(
89+
" There are currently %d flashcards in the savefile",
90+
flashcardList.getSize()));
8991

9092
return flashcardList;
9193

0 commit comments

Comments
 (0)