Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
minwoox committed Aug 29, 2024
1 parent 0f0a489 commit 6756dc0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package com.linecorp.centraldogma.server.internal.credential;

import static com.linecorp.centraldogma.server.CentralDogmaConfig.convertValue;
import static com.linecorp.centraldogma.server.internal.credential.MirrorCredentialUtil.requireNonEmpty;
import static com.linecorp.centraldogma.server.internal.credential.CredentialUtil.requireNonEmpty;

import javax.annotation.Nullable;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import static java.util.Objects.requireNonNull;

final class MirrorCredentialUtil {
final class CredentialUtil {

static String requireNonEmpty(String value, String name) {
requireNonNull(value, name);
Expand All @@ -37,5 +37,5 @@ static byte[] requireNonEmpty(byte[] value, String name) {
return value;
}

private MirrorCredentialUtil() {}
private CredentialUtil() {}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package com.linecorp.centraldogma.server.internal.credential;

import static com.linecorp.centraldogma.server.CentralDogmaConfig.convertValue;
import static com.linecorp.centraldogma.server.internal.credential.MirrorCredentialUtil.requireNonEmpty;
import static com.linecorp.centraldogma.server.internal.credential.CredentialUtil.requireNonEmpty;
import static java.util.Objects.requireNonNull;

import javax.annotation.Nullable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package com.linecorp.centraldogma.server.internal.credential;

import static com.linecorp.centraldogma.server.CentralDogmaConfig.convertValue;
import static com.linecorp.centraldogma.server.internal.credential.MirrorCredentialUtil.requireNonEmpty;
import static com.linecorp.centraldogma.server.internal.credential.CredentialUtil.requireNonEmpty;

import java.util.List;
import java.util.Objects;
Expand Down

0 comments on commit 6756dc0

Please sign in to comment.