Skip to content

Commit f114064

Browse files
authored
Update NoteController.java
clean up printlns
1 parent 87c1fb9 commit f114064

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/main/java/edu/tamu/app/controller/NoteController.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ public ApiResponse getNote(@ApiVariable Long id) {
6363
@ApiValidation(business = { @ApiValidation.Business(value = CREATE), @ApiValidation.Business(value = EXISTS) })
6464
public ApiResponse create(@ApiValidatedModel Note note, @ApiCredentials Credentials credentials) {
6565
note = noteRepo.create(note, credentials);
66-
System.out.println("Note value: " + note);
6766
ApiResponse response = new ApiResponse(SUCCESS, note);
6867
simpMessagingTemplate.convertAndSend("/channel/note/new", response);
6968
return response;

0 commit comments

Comments
 (0)