We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0874855 commit 499f73eCopy full SHA for 499f73e
build.gradle
@@ -44,7 +44,7 @@ subprojects { proj ->
44
45
tasks.withType(JavaCompile) {
46
if (!System.env.'CI') {
47
- options.incremental = true
+ options.incremental = !rootProject.hasProperty('release')
48
}
49
50
guava/src/test/java/com/google/common/cache/CacheEvictionTest.java
@@ -119,7 +119,8 @@ public void testEviction_maxWeight_zero() {
119
LoadingCache<Integer, Integer> cache = CaffeinatedGuava.build(Caffeine.newBuilder()
120
.maximumWeight(0)
121
.weigher(evensOnly)
122
- .removalListener(removalListener),
+ .removalListener(removalListener)
123
+ .executor(MoreExecutors.directExecutor()),
124
loader);
125
126
// 1 won't be cached
0 commit comments