Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use the ToolProvider SPI to run google-java-format #1795

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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 @@ -34,6 +34,7 @@
import java.util.NavigableMap;
import java.util.Set;
import java.util.TreeMap;
import java.util.spi.ToolProvider;
import java.util.stream.Stream;

import com.github.benmanes.caffeine.cache.local.AddConstructor;
Expand All @@ -57,8 +58,6 @@
import com.google.common.collect.Iterables;
import com.google.common.collect.Sets;
import com.google.common.io.Resources;
import com.google.googlejavaformat.java.Formatter;
import com.google.googlejavaformat.java.FormatterException;
import com.squareup.javapoet.ClassName;
import com.squareup.javapoet.JavaFile;
import com.squareup.javapoet.ParameterizedTypeName;
Expand Down Expand Up @@ -87,7 +86,7 @@
this.factoryTypes = new ArrayList<>();
}

private void generate() throws FormatterException, IOException {
private void generate() throws IOException {
generateLocalCaches();
writeJavaFile();
reformat();
Expand All @@ -106,19 +105,27 @@
}
}

private void reformat() throws FormatterException, IOException {
private void reformat() throws IOException {
if (Boolean.parseBoolean(System.getenv("JDK_EA"))) {
return; // may be incompatible for EA builds
}
try (Stream<Path> stream = Files.walk(directory)) {
ImmutableList<Path> files = stream
.filter(path -> path.toString().endsWith(".java"))
.collect(toImmutableList());
var formatter = new Formatter();
for (Path file : files) {
String source = Files.readString(file);
String formatted = formatter.formatSourceAndFixImports(source);
Files.writeString(file, formatted);
var formatter = ToolProvider.findFirst("google-java-format");
if (formatter.isEmpty()) {
return;
}
int result = formatter
.get()
.run(
System.err,

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / forbiddenApis

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Compile (11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Compile (23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / pmd

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (21)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (21)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / spotbugs

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Compile (GraalVM)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (GraalVM)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (GraalVM)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:isolatedTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:lincheckTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:isolatedTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:junitTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:fuzzTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:lincheckTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:junitTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / examples

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (jcache:check, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (guava:check, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (jcache:check, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (simulator:check, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (guava:check, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (simulator:check, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 123 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code
System.out,

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / forbiddenApis

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Compile (11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Compile (23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / pmd

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (21)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (21)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / spotbugs

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Compile (GraalVM)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (GraalVM)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (GraalVM)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:isolatedTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:lincheckTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:isolatedTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:junitTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:fuzzTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:lincheckTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:junitTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / examples

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (jcache:check, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (guava:check, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (jcache:check, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (simulator:check, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (guava:check, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (simulator:check, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 124 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/LocalCacheFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code
Stream.concat(Stream.of("-i"), files.stream().map(Path::toString))
.toArray(String[]::new));
if (result != 0) {
throw new IOException();
}
}
}
Expand Down Expand Up @@ -210,7 +217,7 @@
.replaceFirst("_REFRESH_WRITE", "R");
}

public static void main(String[] args) throws FormatterException, IOException {
public static void main(String[] args) throws IOException {
new LocalCacheFactoryGenerator(Path.of(args[0])).generate();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
import java.util.NavigableMap;
import java.util.Set;
import java.util.TreeMap;
import java.util.spi.ToolProvider;
import java.util.stream.Stream;

import com.github.benmanes.caffeine.cache.node.AddConstructors;
Expand All @@ -52,8 +53,6 @@
import com.google.common.collect.Iterables;
import com.google.common.collect.Sets;
import com.google.common.io.Resources;
import com.google.googlejavaformat.java.Formatter;
import com.google.googlejavaformat.java.FormatterException;
import com.squareup.javapoet.ClassName;
import com.squareup.javapoet.JavaFile;
import com.squareup.javapoet.ParameterizedTypeName;
Expand Down Expand Up @@ -89,7 +88,7 @@
this.nodeTypes = new ArrayList<>();
}

private void generate() throws FormatterException, IOException {
private void generate() throws IOException {
generatedNodes();
writeJavaFile();
reformat();
Expand All @@ -108,19 +107,28 @@
}
}

private void reformat() throws FormatterException, IOException {
private void reformat() throws IOException {
if (Boolean.parseBoolean(System.getenv("JDK_EA"))) {
return; // may be incompatible for EA builds
}
try (Stream<Path> stream = Files.walk(directory)) {
ImmutableList<Path> files = stream
.filter(path -> path.toString().endsWith(".java"))
.collect(toImmutableList());
var formatter = new Formatter();
for (Path file : files) {
String source = Files.readString(file);
String formatted = formatter.formatSourceAndFixImports(source);
Files.writeString(file, formatted);
var formatter = ToolProvider.findFirst("google-java-format");
if (formatter.isEmpty()) {
return;
}
int result =
formatter
.get()
.run(
System.err,

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / forbiddenApis

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Compile (11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Compile (23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / pmd

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (21)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (21)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / spotbugs

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Compile (GraalVM)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (GraalVM)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (GraalVM)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:isolatedTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:lincheckTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:isolatedTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:junitTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:fuzzTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:lincheckTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:junitTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / examples

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (jcache:check, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (guava:check, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (jcache:check, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (simulator:check, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (guava:check, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (simulator:check, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 126 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code
System.out,

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / forbiddenApis

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Compile (11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Compile (23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / pmd

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (21)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (21)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / spotbugs

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Compile (GraalVM)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (GraalVM)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / benchmarks (GraalVM)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:isolatedTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:lincheckTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:isolatedTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:junitTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:fuzzTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:lincheckTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:junitTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / examples

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndSoftValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndWeakValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesAsyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndStrongValuesStatsAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineSlowTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncGuavaTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndSoftValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (jcache:check, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesSyncCaffeineTest, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (guava:check, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (jcache:check, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (simulator:check, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (guava:check, 23)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncCaffeineSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:weakKeysAndWeakValuesStatsSyncGuavaSlowTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (simulator:check, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code

Check warning on line 127 in caffeine/src/javaPoet/java/com/github/benmanes/caffeine/cache/NodeFactoryGenerator.java

View workflow job for this annotation

GitHub Actions / Tests (caffeine:strongKeysAndStrongValuesStatsAsyncCaffeineTest, 11)

[SystemOut] Printing to standard output should only be used for debugging, not in production code
Stream.concat(Stream.of("-i"), files.stream().map(Path::toString))
.toArray(String[]::new));
if (result != 0) {
throw new IOException();
}
}
}
Expand Down Expand Up @@ -217,7 +225,7 @@
.replaceFirst("_SIZE", "S");
}

public static void main(String[] args) throws FormatterException, IOException {
public static void main(String[] args) throws IOException {
new NodeFactoryGenerator(Path.of(args[0])).generate();
}
}
Loading