Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Mar 24, 2015
1 parent 0874855 commit 499f73e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ subprojects { proj ->

tasks.withType(JavaCompile) {
if (!System.env.'CI') {
options.incremental = true
options.incremental = !rootProject.hasProperty('release')
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ public void testEviction_maxWeight_zero() {
LoadingCache<Integer, Integer> cache = CaffeinatedGuava.build(Caffeine.newBuilder()
.maximumWeight(0)
.weigher(evensOnly)
.removalListener(removalListener),
.removalListener(removalListener)
.executor(MoreExecutors.directExecutor()),
loader);

// 1 won't be cached
Expand Down

0 comments on commit 499f73e

Please sign in to comment.