Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ Optional<FormatterService> get(Project project, PalantirJavaFormatSettings setti
settings.injectedVersionIsOutdated()));
}

@SuppressWarnings("for-rollout:Slf4jLogsafeArgs")
private static Optional<FormatterService> createFormatter(FormatterCacheKey cacheKey) {
if (cacheKey.nativeImageClassPath.isPresent()) {
log.info("Using the native formatter with classpath: {}", cacheKey.nativeImageClassPath.get());
Expand Down Expand Up @@ -120,7 +119,6 @@ private static List<Path> getProvidedImplementationUrls(List<URI> implementation
return implementationClasspath.stream().map(Path::of).collect(Collectors.toList());
}

@SuppressWarnings("for-rollout:Slf4jLogsafeArgs")
private static List<Path> getBundledImplementationUrls() {
// Load from the jars bundled with the plugin.
IdeaPluginDescriptor ourPlugin = getPluginDescriptor();
Expand All @@ -129,7 +127,6 @@ private static List<Path> getBundledImplementationUrls() {
return listDirAsUrlsUnchecked(implDir);
}

@SuppressWarnings("for-rollout:Slf4jLogsafeArgs")
private static List<Path> getImplementationUrls(
Optional<List<URI>> implementationClassPath, boolean useBundledImplementation) {
if (useBundledImplementation) {
Expand Down Expand Up @@ -177,7 +174,6 @@ private static OptionalInt parseSdkJavaVersion(Sdk sdk) {
return parseSdkJavaVersion(version);
}

@SuppressWarnings("for-rollout:Slf4jLogsafeArgs")
@VisibleForTesting
static OptionalInt parseSdkJavaVersion(String version) {
int indexOfVersionDelimiter = version.indexOf('.');
Expand Down