Skip to content

Commit

Permalink
Fixes checkstyle case change
Browse files Browse the repository at this point in the history
  • Loading branch information
spencergibb committed Oct 18, 2024
1 parent fa4826a commit 78ae184
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package org.springframework.cloud.bus.rsocket;

import java.util.HashMap;
import java.util.Locale;
import java.util.Map;

import io.rsocket.routing.client.spring.RoutingRSocketRequester;
Expand Down Expand Up @@ -60,7 +61,7 @@ static Map<Key, String> getTagsFromDestination(String delimitedProperties) {
}
catch (IllegalArgumentException e) {
try {
WellKnownKey wellKnownKey = WellKnownKey.valueOf(key.toUpperCase());
WellKnownKey wellKnownKey = WellKnownKey.valueOf(key.toUpperCase(Locale.ROOT));
map.put(Key.of(wellKnownKey), value);
}
catch (IllegalArgumentException e2) {
Expand Down

0 comments on commit 78ae184

Please sign in to comment.