Skip to content

Commit

Permalink
update :: toULIDString 접근 범위 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Umjiseung committed Sep 28, 2024
1 parent f9625c6 commit 9ac98f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static byte[] generateULID() {
return bytes;
}

private static String toULIDString(byte[] bytes) {
public String toULIDString(byte[] bytes) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < bytes.length; i++) {
if (i == 6 || i == 8 || i == 10 || i == 12) {
Expand Down

0 comments on commit 9ac98f5

Please sign in to comment.