Skip to content

Commit

Permalink
refactor: 메서드에 필요없는 static 선언 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
hyewoncc committed Oct 26, 2022
1 parent 976ccd3 commit b9e2fdd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ private List<Long> findChannelId(final Long memberId, final MessageRequest messa
return List.of(firstSubscription.getChannelId());
}

private static boolean isNonNullNorEmpty(final List<Long> channelIds) {
private boolean isNonNullNorEmpty(final List<Long> channelIds) {
return channelIds != null && !channelIds.isEmpty();
}

Expand Down

0 comments on commit b9e2fdd

Please sign in to comment.