Skip to content

Commit

Permalink
Update to conform coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
woodenclock committed Oct 16, 2023
1 parent 46279ea commit 7b23c41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/main/java/seedu/wildwatch/command/AddCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ public class AddCommand extends Command {
+ "(?: R/(?<remark>[^/]+))?");

public static void addEntry(String inputBuffer, boolean isFromFile) throws IncorrectInputException {
// if (!isFromFile) {
// Ui.listMessagePrinter();
// }
// if (!isFromFile) {
// Ui.listMessagePrinter();
// }

final Matcher matcher = ADD_ENTRY_COMMAND_FORMAT.matcher(inputBuffer);
if (!matcher.matches()) {
Expand Down
4 changes: 0 additions & 4 deletions src/main/java/seedu/wildwatch/operation/DateHandler.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
package seedu.wildwatch.operation;

import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.time.format.DateTimeParseException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class DateHandler {
private static final Pattern DATE_PATTERN = Pattern.compile(
Expand Down

0 comments on commit 7b23c41

Please sign in to comment.