@@ -74,6 +74,7 @@ Optional<FormatterService> get(Project project, PalantirJavaFormatSettings setti
7474 settings .injectedVersionIsOutdated ()));
7575 }
7676
77+ @ SuppressWarnings ("for-rollout:Slf4jLogsafeArgs" )
7778 private static Optional <FormatterService > createFormatter (FormatterCacheKey cacheKey ) {
7879 if (cacheKey .nativeImageClassPath .isPresent ()) {
7980 log .info ("Using the native formatter with classpath: {}" , cacheKey .nativeImageClassPath .get ());
@@ -118,6 +119,7 @@ private static List<Path> getProvidedImplementationUrls(List<URI> implementation
118119 return implementationClasspath .stream ().map (Path ::of ).collect (Collectors .toList ());
119120 }
120121
122+ @ SuppressWarnings ("for-rollout:Slf4jLogsafeArgs" )
121123 private static List <Path > getBundledImplementationUrls () {
122124 // Load from the jars bundled with the plugin.
123125 IdeaPluginDescriptor ourPlugin = getPluginDescriptor ();
@@ -126,6 +128,7 @@ private static List<Path> getBundledImplementationUrls() {
126128 return listDirAsUrlsUnchecked (implDir );
127129 }
128130
131+ @ SuppressWarnings ("for-rollout:Slf4jLogsafeArgs" )
129132 private static List <Path > getImplementationUrls (
130133 Optional <List <URI >> implementationClassPath , boolean useBundledImplementation ) {
131134 if (useBundledImplementation ) {
@@ -173,6 +176,7 @@ private static OptionalInt parseSdkJavaVersion(Sdk sdk) {
173176 return parseSdkJavaVersion (version );
174177 }
175178
179+ @ SuppressWarnings ("for-rollout:Slf4jLogsafeArgs" )
176180 @ VisibleForTesting
177181 static OptionalInt parseSdkJavaVersion (String version ) {
178182 int indexOfVersionDelimiter = version .indexOf ('.' );
0 commit comments