Skip to content

Commit

Permalink
Changed border
Browse files Browse the repository at this point in the history
  • Loading branch information
douglaslewpc committed Mar 3, 2021
1 parent 36c0c91 commit 6619775
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ Example of usage:

Expected outcome:

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
-------------------------------------------------------------------------------------------------------------------------------
Got it. I've added this task:
[T] [ ] read book
[T] [ ] read book
Now you have 1 tasks in the list.

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
-------------------------------------------------------------------------------------------------------------------------------
2 changes: 1 addition & 1 deletion src/main/java/Duke.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

public class Duke {
public static final int maxTasks = 100;
private static final String border = " ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――";
private static final String border = " -------------------------------------------------------------------------------------------------------------------------------";
private static TaskList tasks = new TaskList();
private static final Ui ui = new Ui();
private static Parser parser = new Parser();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/parser/Parser.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public class Parser {


public static final String border = " ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――";
public static final String border = " -------------------------------------------------------------------------------------------------------------------------------";
public static final List<String> commands = Arrays.asList("event", "deadline", "todo", "list", "done", "delete", "bye","find");

public String processUserCommand(String userCommand) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tasklist/TaskList.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public TaskList() {
}

private int taskCount = 0;
public static final String border = " ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――";
public static final String border = " -------------------------------------------------------------------------------------------------------------------------------";
/*
* The add task method within the TaskList class adds tasks from the list
* @params task contains information of the task to be added to the list
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/ui/Ui.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

public class Ui {

public static final String border = " ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――";
public static final String border = " -------------------------------------------------------------------------------------------------------------------------------";

public void printWelcomeMessage(){
String logo = " ____ _ \n"
Expand All @@ -15,11 +15,11 @@ public void printWelcomeMessage(){
+ "| |_| | |_| | < __/\n"
+ "|____/ \\__,_|_|\\_\\___|\n";
System.out.println("Hello from\n" + logo);
System.out.println("――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――");
System.out.println("-------------------------------------------------------------------------------------------------------------------------------");
System.out.println("Hello! I'm Duke");
System.out.println("What can I do for you?");
System.out.println(" ");
System.out.println("――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――");
System.out.println("-------------------------------------------------------------------------------------------------------------------------------");
}

public void printList(){
Expand Down

0 comments on commit 6619775

Please sign in to comment.