Skip to content

Commit

Permalink
Merge pull request #71 from jianrong7/chore/remove-debug
Browse files Browse the repository at this point in the history
remove debug statements
  • Loading branch information
jianrong7 authored Oct 20, 2023
2 parents 7ee1a35 + 9ec8a0d commit 00a08a9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/main/java/seedu/address/model/ModelManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ public void updateFilteredCustomerList(Predicate<Customer> predicate) {
*/
@Override
public ObservableList<Property> getFilteredPropertyList() {
System.out.println(filteredProperties);
return filteredProperties;
}

Expand Down
1 change: 0 additions & 1 deletion src/main/java/seedu/address/ui/CustomerCard.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ public CustomerCard(Customer customer, int displayedIndex) {
super(FXML);
this.customer = customer;
id.setText(displayedIndex + ". ");
System.out.println(customer.getName().fullName);
name.setText(customer.getName().fullName);
phone.setText(customer.getPhone().value);
budget.setText(customer.getBudget().toString());
Expand Down

0 comments on commit 00a08a9

Please sign in to comment.