We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40c975a commit 39294f0Copy full SHA for 39294f0
1 file changed
src/main/java/seedu/address/model/AddressBook.java
@@ -64,7 +64,6 @@ public AddressBook(ReadOnlyAddressBook toBeCopied) {
64
* @param height the height of the user.
65
*/
66
public void addHeight(double height) {
67
- System.out.println(String.format("add height %.2f", height));
68
this.height = height;
69
}
70
@@ -74,7 +73,6 @@ public void addHeight(double height) {
74
73
* @param weight the weight of the user.
75
76
public void addWeight(double weight) {
77
- System.out.println(String.format("add weight %.2f", weight));
78
this.weight = weight;
79
80
0 commit comments