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