Skip to content

Commit

Permalink
Fix style for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterHW963 committed Sep 18, 2024
1 parent 4b6c31d commit baba855
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/nether/parser/Parser.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import java.util.Objects;

import nether.NetherException;
import nether.Ui;
import nether.command.AddCommand;
import nether.command.Command;
import nether.command.DeleteCommand;
Expand Down Expand Up @@ -47,7 +46,8 @@ public Command parse(String userInput) throws NetherException {
return new AddCommand(new DeadlineTask(processedInput[0], processedInput[1], processedInput[2]));
case "event":
processedInput = extractInputDetails(userInput, "event");
return new AddCommand(new EventTask(processedInput[0], processedInput[1], processedInput[2], processedInput[3]));
return new AddCommand(new EventTask(processedInput[0], processedInput[1], processedInput[2],
processedInput[3]));
case "mark":
return new MarkDoneCommand(extractTaskNumber(userInput));
case "unmark":
Expand Down

0 comments on commit baba855

Please sign in to comment.