Skip to content

Commit 5099f7f

Browse files
committed
chore: fix fmt
Signed-off-by: shuiyisong <xixing.sys@gmail.com>
1 parent 00a8153 commit 5099f7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ingester-protocol/src/main/java/io/greptime/models/AuthInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ public static AuthInfo noAuthorization() {
5656
*/
5757
public String base64HeaderValue() {
5858
String encoded = Base64.getEncoder()
59-
.encodeToString(
60-
String.format("%s:%s", this.username, this.password).getBytes(StandardCharsets.UTF_8));
59+
.encodeToString(
60+
String.format("%s:%s", this.username, this.password).getBytes(StandardCharsets.UTF_8));
6161
return String.format("Basic %s", encoded);
6262
}
6363

0 commit comments

Comments
 (0)