Skip to content

Commit

Permalink
Fix checkstyle error
Browse files Browse the repository at this point in the history
  • Loading branch information
NatLeong committed Mar 19, 2024
1 parent c95e15f commit e8dbe8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/model/person/Status.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public Status(String status) {
/**
* Gets status type
*
* @return status type of this status
* @return Status type of this status
*/
public StatusType getStatusType() {
return this.status;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/seedu/address/ui/PersonCard.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import javafx.scene.layout.HBox;
import javafx.scene.layout.Region;
import javafx.scene.paint.Color;
import seedu.address.model.person.Person;
import javafx.scene.shape.Circle;
import seedu.address.model.person.Person;
import seedu.address.model.person.Status;

/**
Expand Down Expand Up @@ -52,7 +52,7 @@ public PersonCard(Person person, int displayedIndex) {
/**
* Set colour of status circle to represent status
*
* @param status
* @param status Status of the person
* @return colour representing that respective status
*/
public void updateStatusCircle(Status status) {
Expand Down

0 comments on commit e8dbe8f

Please sign in to comment.