Skip to content

Commit b65dcfb

Browse files
committed
fix: Optional get 수정
1 parent 5cafd45 commit b65dcfb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/generated/org/dfbf/soundlink/domain/emotionRecord/entity/QSpotifyMusic.java

Whitespace-only changes.

src/main/java/org/dfbf/soundlink/domain/emotionRecord/entity/SpotifyMusic.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ public SpotifyMusic (String spotifyId, String title, String artist, String album
4949
}
5050

5151
public SpotifyMusic (UserUpdateDto userUpdateDto) {
52-
this.spotifyId = userUpdateDto.spotifyId();
53-
this.title = userUpdateDto.title();
54-
this.artist = userUpdateDto.artist();
55-
this.albumImage = userUpdateDto.albumImage();
52+
this.spotifyId = userUpdateDto.spotifyId().get();
53+
this.title = userUpdateDto.title().get();
54+
this.artist = userUpdateDto.artist().get();
55+
this.albumImage = userUpdateDto.albumImage().get();
5656
}
5757
}

0 commit comments

Comments
 (0)