We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf3c3b2 commit 9de17f8Copy full SHA for 9de17f8
src/main/java/com/example/lyrics_api_v2/controller/LyricsController.java
@@ -27,8 +27,6 @@ public ResponseEntity<?> getLyrics(
27
Lyrics lyrics = lyricsService.getLyrics(platform, title, artist);
28
ApiVersion version = new ApiVersion();
29
30
- System.out.println(lyrics);
31
-
32
if (lyrics == null) {
33
LyricsNotFound error = new LyricsNotFound();
34
return ResponseEntity.status(404).body(new ApiResponse<>(error, version));
0 commit comments