@@ -76,7 +76,6 @@ Optional<FormatterService> get(Project project, PalantirJavaFormatSettings setti
76
76
settings .injectedVersionIsOutdated ()));
77
77
}
78
78
79
- @ SuppressWarnings ("for-rollout:Slf4jLogsafeArgs" )
80
79
private static Optional <FormatterService > createFormatter (FormatterCacheKey cacheKey ) {
81
80
if (cacheKey .nativeImageClassPath .isPresent ()) {
82
81
log .info ("Using the native formatter with classpath: {}" , cacheKey .nativeImageClassPath .get ());
@@ -121,7 +120,6 @@ private static List<Path> getProvidedImplementationUrls(List<URI> implementation
121
120
return implementationClasspath .stream ().map (Path ::of ).collect (Collectors .toList ());
122
121
}
123
122
124
- @ SuppressWarnings ("for-rollout:Slf4jLogsafeArgs" )
125
123
private static List <Path > getBundledImplementationUrls () {
126
124
// Load from the jars bundled with the plugin.
127
125
IdeaPluginDescriptor ourPlugin = getPluginDescriptor ();
@@ -131,7 +129,6 @@ private static List<Path> getBundledImplementationUrls() {
131
129
return listDirAsUrlsUnchecked (implDir );
132
130
}
133
131
134
- @ SuppressWarnings ("for-rollout:Slf4jLogsafeArgs" )
135
132
private static List <Path > getImplementationUrls (
136
133
Optional <List <URI >> implementationClassPath , boolean useBundledImplementation ) {
137
134
if (useBundledImplementation ) {
@@ -180,7 +177,6 @@ private static OptionalInt parseSdkJavaVersion(Sdk sdk) {
180
177
return parseSdkJavaVersion (version );
181
178
}
182
179
183
- @ SuppressWarnings ("for-rollout:Slf4jLogsafeArgs" )
184
180
@ VisibleForTesting
185
181
static OptionalInt parseSdkJavaVersion (String version ) {
186
182
int indexOfVersionDelimiter = version .indexOf ('.' );
0 commit comments