Skip to content

Commit

Permalink
⚙️ :: (#develop) blank 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
tedsoftj1123 committed Nov 21, 2023
1 parent 052442a commit 073af24
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static <E> String joinStringList(List<E> request, String key) {
}

public static List<String> divideString(String content, String key) {
if (content == null || content.isEmpty()) {
if (content == null || content.isEmpty() || content.isBlank()) {
return List.of();
}

Expand Down

0 comments on commit 073af24

Please sign in to comment.