Skip to content

Commit

Permalink
Remove any extra curly braces from the @value annotation (alibaba#5838)
Browse files Browse the repository at this point in the history
  • Loading branch information
tian-qingzhao authored May 26, 2021
1 parent 0e4e1f6 commit b55b42c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ public class AuthConfigs {
@Value("${nacos.core.auth.server.identity.key:}")
private String serverIdentityKey;

@Value(("${nacos.core.auth.server.identity.value:}"))
@Value("${nacos.core.auth.server.identity.value:}")
private String serverIdentityValue;

@Value(("${nacos.core.auth.enable.userAgentAuthWhite:true}"))
@Value("${nacos.core.auth.enable.userAgentAuthWhite:true}")
private boolean enableUserAgentAuthWhite;

public byte[] getSecretKeyBytes() {
Expand Down

0 comments on commit b55b42c

Please sign in to comment.