fix(simple-jwt-authzero): Removed unused empty line in logs.

Closes #10
This commit is contained in:
Zihlu Wang
2023-08-30 14:09:21 +08:00
parent d2b57d7dff
commit cd2ddb95c3
@@ -283,8 +283,7 @@ public class AuthzeroTokenResolver implements TokenResolver<DecodedJWT> {
builder.withClaim(name, v);
} else {
log.warn("""
Unable to determine the type of field {}, converting it to a string now.
""", name);
Unable to determine the type of field {}, converting it to a string now.""", name);
builder.withClaim(name, value.toString());
}
} else {