Skip to content

Commit

Permalink
Add branch-level-10 and then merge it
Browse files Browse the repository at this point in the history
  • Loading branch information
Persdre committed Sep 5, 2020
1 parent 559fcdd commit 2c25896
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 13 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id 'java'
id 'application'
id 'checkstyle'
id 'com.github.johnrengelman.shadow' version '5.1.0'
id "com.github.johnrengelman.shadow" version "6.0.0"
}

repositories {
Expand Down Expand Up @@ -56,7 +56,7 @@ shadowJar {
archiveClassifier = null
}

run{
run {
standardInput = System.in
}

11 changes: 1 addition & 10 deletions src/main/java/duke/Duke.java
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
package duke;

import java.io.IOException;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.AnchorPane;
import javafx.stage.Stage;

/**
* Duke main class
*/
public class Duke{
public class Duke {
private Storage storage;
private TaskList tasks;
private Ui ui;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/duke/Event.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import java.time.format.DateTimeFormatter;

public class Event extends Task {
private final static DateTimeFormatter formatter = DateTimeFormatter.ofPattern("MMM dd yyyy");
private static DateTimeFormatter formatter = DateTimeFormatter.ofPattern("MMM dd yyyy");
private final LocalDate eventTime;

/**
Expand Down

0 comments on commit 2c25896

Please sign in to comment.