Skip to content

Commit

Permalink
Fixed Travis CI errors with javadoc and unnecessary import
Browse files Browse the repository at this point in the history
  • Loading branch information
ChooJeremy committed Oct 17, 2018
1 parent cc32300 commit 323e4dd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/java/seedu/address/ui/MainWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

import java.util.logging.Logger;

import org.controlsfx.control.StatusBar;

import com.google.common.eventbus.Subscribe;

import javafx.event.ActionEvent;
Expand Down Expand Up @@ -183,6 +181,9 @@ private void removeLoginWindow() {
personListPanelPlaceholder.getChildren().remove(loginForm.getRoot());
}

/**
* Removes the elements built in fillInnerParts() to reset to a blank screen.
*/
private void removeInnerElements() {
browserPlaceholder.getChildren().remove(browserPanel.getRoot());
personListPanelPlaceholder.getChildren().remove(personListPanel.getRoot());
Expand Down

0 comments on commit 323e4dd

Please sign in to comment.