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