diff --git a/idea-plugin/src/main/java/com/palantir/javaformat/intellij/FormatterProvider.java b/idea-plugin/src/main/java/com/palantir/javaformat/intellij/FormatterProvider.java index e30306b13..bdc41815d 100644 --- a/idea-plugin/src/main/java/com/palantir/javaformat/intellij/FormatterProvider.java +++ b/idea-plugin/src/main/java/com/palantir/javaformat/intellij/FormatterProvider.java @@ -74,7 +74,6 @@ Optional get(Project project, PalantirJavaFormatSettings setti settings.injectedVersionIsOutdated())); } - @SuppressWarnings("for-rollout:Slf4jLogsafeArgs") private static Optional createFormatter(FormatterCacheKey cacheKey) { if (cacheKey.nativeImageClassPath.isPresent()) { log.info("Using the native formatter with classpath: {}", cacheKey.nativeImageClassPath.get()); @@ -119,7 +118,6 @@ private static List getProvidedImplementationUrls(List implementation return implementationClasspath.stream().map(Path::of).collect(Collectors.toList()); } - @SuppressWarnings("for-rollout:Slf4jLogsafeArgs") private static List getBundledImplementationUrls() { // Load from the jars bundled with the plugin. IdeaPluginDescriptor ourPlugin = getPluginDescriptor(); @@ -128,7 +126,6 @@ private static List getBundledImplementationUrls() { return listDirAsUrlsUnchecked(implDir); } - @SuppressWarnings("for-rollout:Slf4jLogsafeArgs") private static List getImplementationUrls( Optional> implementationClassPath, boolean useBundledImplementation) { if (useBundledImplementation) { @@ -176,7 +173,6 @@ private static OptionalInt parseSdkJavaVersion(Sdk sdk) { return parseSdkJavaVersion(version); } - @SuppressWarnings("for-rollout:Slf4jLogsafeArgs") @VisibleForTesting static OptionalInt parseSdkJavaVersion(String version) { int indexOfVersionDelimiter = version.indexOf('.');