Skip to content

Commit

Permalink
Fixes for checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
spencergibb committed Oct 24, 2024
1 parent bb8741c commit cdd77f2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Locale;
import java.util.concurrent.atomic.AtomicReference;

import software.amazon.awssdk.auth.credentials.AwsCredentials;
Expand Down Expand Up @@ -175,7 +176,7 @@ private AppIdUserIdMechanism getAppIdMechanism(VaultProperties.AppIdProperties a
}
catch (ClassNotFoundException ex) {

switch (appId.getUserId().toUpperCase()) {
switch (appId.getUserId().toUpperCase(Locale.ROOT)) {

case VaultProperties.AppIdProperties.IP_ADDRESS:
return new IpAddressUserId();
Expand Down

0 comments on commit cdd77f2

Please sign in to comment.