Skip to content

Commit

Permalink
style [#76] print 함수 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
ch1hyun committed Jan 17, 2025
1 parent a6f3164 commit dc27e72
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,6 @@ private List<ConfetiArtist> searchByArtistIds(final List<String> artistIds) {
// 리플렉션을 사용해 타겟 오브젝트를 재귀적으로 순회하며 아티스트 아이디를 수집하는 함수
// TODO: 추후에 메소드 분리 리펙토링 예정
private void collect(final Object target) {
if (target !=null) {
System.out.println(target);
}
// 이미 탐색한 객체인 경우
if (target == null || objectTrack.containsKey(target)) {
return;
Expand Down

0 comments on commit dc27e72

Please sign in to comment.