Skip to content

Commit 83156a2

Browse files
authored
Merge pull request nus-cs2103-AY2122S1#93 from kaixin-hc/notorCommands
Refactor to Notor
2 parents 513fb40 + ada51ab commit 83156a2

File tree

198 files changed

+1753
-1738
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

198 files changed

+1753
-1738
lines changed

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
id 'jacoco'
77
}
88

9-
mainClassName = 'seedu.address.Main'
9+
mainClassName = 'seedu.notor.Main'
1010

1111
sourceCompatibility = JavaVersion.VERSION_11
1212
targetCompatibility = JavaVersion.VERSION_11
@@ -66,7 +66,7 @@ dependencies {
6666
}
6767

6868
shadowJar {
69-
archiveName = 'addressbook.jar'
69+
archiveName = 'notor.jar'
7070
}
7171

7272
defaultTasks 'clean', 'test'

docs/diagrams/ArchitectureSequenceDiagram.puml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ activate model MODEL_COLOR
1919
model -[MODEL_COLOR]-> logic
2020
deactivate model
2121

22-
logic -[LOGIC_COLOR]> storage : saveAddressBook(addressBook)
22+
logic -[LOGIC_COLOR]> storage : saveAddressBook(notor)
2323
activate storage STORAGE_COLOR
2424

2525
storage -[STORAGE_COLOR]> storage : Save to file

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

-21
This file was deleted.

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

-14
This file was deleted.

src/main/java/seedu/address/logic/commands/group/GroupCommand.java

-8
This file was deleted.

src/main/java/seedu/address/logic/executors/group/GroupExecutor.java

-6
This file was deleted.

src/main/java/seedu/address/storage/AddressBookStorage.java

-47
This file was deleted.

src/main/java/seedu/address/storage/JsonAddressBookStorage.java

-80
This file was deleted.

src/main/java/seedu/address/storage/Storage.java

-32
This file was deleted.

src/main/java/seedu/address/storage/StorageManager.java

-79
This file was deleted.

src/main/java/seedu/address/AppParameters.java src/main/java/seedu/notor/AppParameters.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package seedu.address;
1+
package seedu.notor;
22

33
import java.nio.file.Path;
44
import java.nio.file.Paths;
@@ -7,8 +7,8 @@
77
import java.util.logging.Logger;
88

99
import javafx.application.Application;
10-
import seedu.address.commons.core.LogsCenter;
11-
import seedu.address.commons.util.FileUtil;
10+
import seedu.notor.commons.core.LogsCenter;
11+
import seedu.notor.commons.util.FileUtil;
1212

1313
/**
1414
* Represents the parsed command-line parameters given to the application.

src/main/java/seedu/address/Main.java src/main/java/seedu/notor/Main.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package seedu.address;
1+
package seedu.notor;
22

33
import javafx.application.Application;
44

0 commit comments

Comments
 (0)