We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87c1fb9 commit f114064Copy full SHA for f114064
1 file changed
src/main/java/edu/tamu/app/controller/NoteController.java
@@ -63,7 +63,6 @@ public ApiResponse getNote(@ApiVariable Long id) {
63
@ApiValidation(business = { @ApiValidation.Business(value = CREATE), @ApiValidation.Business(value = EXISTS) })
64
public ApiResponse create(@ApiValidatedModel Note note, @ApiCredentials Credentials credentials) {
65
note = noteRepo.create(note, credentials);
66
- System.out.println("Note value: " + note);
67
ApiResponse response = new ApiResponse(SUCCESS, note);
68
simpMessagingTemplate.convertAndSend("/channel/note/new", response);
69
return response;
0 commit comments