Skip to content

Commit 482878b

Browse files
committed
Addressed unused imports and variables warning.
Fixed it by getting rid of them.
1 parent 6be9352 commit 482878b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/main/java/delete_flashcard_set_use_case/DelFlashcardSetInteractor.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
// Use case (Red) layer
44

55
import data_access.DBGateway;
6-
import data_access.IFlashcardDataAccess;
7-
import data_access.IFlashcardSetDataAccess;
86

97
/**
108
* [Feature: Deleting a Flashcard Set]
@@ -21,8 +19,7 @@
2119
public class DelFlashcardSetInteractor implements DelFlashcardSetInputBoundary {
2220

2321
DBGateway dbGateway;
24-
IFlashcardSetDataAccess flashcardSetDataAccess; // for testing
25-
IFlashcardDataAccess flashcardDataAccess; // for testing
22+
2623
DelFlashcardSetOutputBoundary outputBoundary;
2724

2825
public DelFlashcardSetInteractor(DBGateway dbGateway, DelFlashcardSetOutputBoundary outputBoundary) {

0 commit comments

Comments
 (0)