Skip to content

Commit f865289

Browse files
authored
Update Service.java
cleanup printlns
1 parent f114064 commit f865289

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/main/java/edu/tamu/app/model/Service.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,9 @@ public void setNotes(List<Note> notes) {
125125
}
126126

127127
public void addNote(Note note) {
128-
System.out.println("addNote size before: " + this.notes.size());
129128
if (!this.notes.contains(note)) {
130129
this.notes.add(note);
131130
}
132-
System.out.println("addNote size after: " + this.notes.size());
133131
}
134132

135133
public void removeNote(Note note) {

0 commit comments

Comments
 (0)