File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
guava/src/test/java/com/google/common/cache
jcache/src/test/java/com/github/benmanes/caffeine/jcache Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ subprojects {
6565 group = ' com.github.ben-manes.caffeine'
6666 version. with {
6767 major = 2 // incompatible API changes
68- minor = 3 // backwards-compatible additions
69- patch = 6 // backwards-compatible bug fixes
68+ minor = 4 // backwards-compatible additions
69+ patch = 0 // backwards-compatible bug fixes
7070 releaseBuild = rootProject. hasProperty(' release' )
7171 }
7272 archivesBaseName = path[1 .. -1 ]. replaceAll(' :' , ' -' ). toLowerCase()
Original file line number Diff line number Diff line change @@ -391,7 +391,7 @@ public void testRemovalNotification_clear() throws InterruptedException {
391391 * cache afterward).
392392 */
393393 @ GwtIncompatible ("QueuingRemovalListener" )
394-
394+ @ SuppressWarnings ( "FutureReturnValueIgnored" )
395395 public void testRemovalNotification_clear_basher () throws InterruptedException {
396396 // If a clear() happens close to the end of computation, one of two things should happen:
397397 // - computation ends first: the removal listener is called, and the cache does not contain the
@@ -468,6 +468,7 @@ public void testRemovalNotification_clear_basher() throws InterruptedException {
468468 * (removed because of size limits or expiration) trigger appropriate removal notifications.
469469 */
470470 @ GwtIncompatible ("QueuingRemovalListener" )
471+ @ SuppressWarnings ("FutureReturnValueIgnored" )
471472 // FIXME(ben): disabled due to TravisCI killing the process
472473 public void testRemovalNotification_get_basher () throws InterruptedException {
473474 int nTasks = 1000 ;
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ public void start() {
7777 }
7878 }
7979
80+ @ SuppressWarnings ("FutureReturnValueIgnored" )
8081 private void scheduleStatusTask () {
8182 Stopwatch stopwatch = Stopwatch .createStarted ();
8283 Executors .newSingleThreadScheduledExecutor ().scheduleWithFixedDelay (() -> {
You can’t perform that action at this time.
0 commit comments