Skip to content

Commit

Permalink
Resolve build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jeong-jaeho committed Mar 20, 2024
1 parent 6b94a6a commit 1514686
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package seedu.address.logic.commands;

import static java.util.Objects.requireNonNull;

import seedu.address.model.AddressBook;
import seedu.address.model.Model;

/**
Expand All @@ -12,8 +10,8 @@ public class DeleteAllCommand extends Command {

public static final String COMMAND_WORD = "delete-all";
public static final String CONFIRMATION =
"Are you sure you want to delete all? This action is irreversible. If yes, enter ‘delete-all-f’. " +
"If not, simply enter 'no'.";
"Are you sure you want to delete all? This action is irreversible. If yes, enter ‘delete-all-f’. "
+ "If not, simply enter 'no'.";

/**
* Executes the command and returns the result message.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
import seedu.address.model.AddressBook;
import seedu.address.model.Model;

/**
* Deletes all persons in the address book forcefully.
*/
public class ForceDeleteAllCommand extends Command {
public static final String COMMAND_WORD = "delete-all-f";
public static final String MESSAGE_SUCCESS = "Successfully deleted all data";
Expand Down
5 changes: 3 additions & 2 deletions src/main/java/seedu/address/logic/commands/NoCommand.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package seedu.address.logic.commands;

import static java.util.Objects.requireNonNull;

import seedu.address.model.AddressBook;
import seedu.address.model.Model;

/**
* No command, do nothing.
*/
public class NoCommand extends Command {
public static final String COMMAND_WORD = "no";

Expand Down

0 comments on commit 1514686

Please sign in to comment.