Skip to content

Commit a57ad56

Browse files
committed
Delete depreciated files
1 parent 079797b commit a57ad56

10 files changed

Lines changed: 0 additions & 899 deletions

File tree

src/main/java/seedu/address/logic/commands/EditCommand.java

Lines changed: 0 additions & 226 deletions
This file was deleted.

src/main/java/seedu/address/logic/parser/AddressBookParser.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import seedu.address.logic.commands.ClearCommand;
1111
import seedu.address.logic.commands.Command;
1212
import seedu.address.logic.commands.DeleteCommand;
13-
//import seedu.address.logic.commands.EditCommand;
1413
import seedu.address.logic.commands.ExitCommand;
1514
import seedu.address.logic.commands.FindCommand;
1615
import seedu.address.logic.commands.HelpCommand;
@@ -46,10 +45,6 @@ public Command parseCommand(String userInput) throws ParseException {
4645

4746
case AddCommand.COMMAND_WORD:
4847
return new AddCommandParser().parse(arguments);
49-
/*
50-
case EditCommand.COMMAND_WORD:
51-
return new EditCommandParser().parse(arguments);
52-
*/
5348

5449
case DeleteCommand.COMMAND_WORD:
5550
return new DeleteCommandParser().parse(arguments);

src/main/java/seedu/address/logic/parser/EditCommandParser.java

Lines changed: 0 additions & 82 deletions
This file was deleted.

src/test/java/seedu/address/logic/commands/CommandTestUtil.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import seedu.address.model.Model;
2020
import seedu.address.model.person.NameContainsKeywordsPredicate;
2121
import seedu.address.model.person.Person;
22-
//import seedu.address.testutil.EditPersonDescriptorBuilder;
2322

2423
/**
2524
* Contains helper methods for testing commands.
@@ -57,20 +56,6 @@ public class CommandTestUtil {
5756
public static final String PREAMBLE_WHITESPACE = "\t \r \n";
5857
public static final String PREAMBLE_NON_EMPTY = "NonEmptyPreamble";
5958

60-
/*
61-
public static final EditCommand.EditPersonDescriptor DESC_AMY;
62-
public static final EditCommand.EditPersonDescriptor DESC_BOB;
63-
64-
static {
65-
DESC_AMY = new EditPersonDescriptorBuilder().withName(VALID_NAME_AMY)
66-
.withPhone(VALID_PHONE_AMY).withEmail(VALID_EMAIL_AMY).withAddress(VALID_ADDRESS_AMY)
67-
.withTags(VALID_TAG_FRIEND).build();
68-
DESC_BOB = new EditPersonDescriptorBuilder().withName(VALID_NAME_BOB)
69-
.withPhone(VALID_PHONE_BOB).withEmail(VALID_EMAIL_BOB).withAddress(VALID_ADDRESS_BOB)
70-
.withTags(VALID_TAG_HUSBAND, VALID_TAG_FRIEND).build();
71-
}
72-
*/
73-
7459
/**
7560
* Executes the given {@code command}, confirms that <br>
7661
* - the returned {@link CommandResult} matches {@code expectedCommandResult} <br>

0 commit comments

Comments
 (0)