diff --git a/build.gradle b/build.gradle index 63b156639d..54dc090580 100644 --- a/build.gradle +++ b/build.gradle @@ -48,8 +48,8 @@ subprojects { group = 'com.github.ben-manes.caffeine' version.with { major = 2 // incompatible API changes - minor = 2 // backwards-compatible additions - patch = 8 // backwards-compatible bug fixes + minor = 3 // backwards-compatible additions + patch = 0 // backwards-compatible bug fixes releaseBuild = rootProject.hasProperty('release') } archivesBaseName = path[1..-1].replaceAll(':', '-').toLowerCase() diff --git a/simulator/src/main/java/com/github/benmanes/caffeine/cache/simulator/policy/sketch/S4WindowTinyLfuPolicy.java b/simulator/src/main/java/com/github/benmanes/caffeine/cache/simulator/policy/sketch/S4WindowTinyLfuPolicy.java index b943a04fcc..c248fefab1 100644 --- a/simulator/src/main/java/com/github/benmanes/caffeine/cache/simulator/policy/sketch/S4WindowTinyLfuPolicy.java +++ b/simulator/src/main/java/com/github/benmanes/caffeine/cache/simulator/policy/sketch/S4WindowTinyLfuPolicy.java @@ -191,7 +191,6 @@ enum Status { static final class Node { final long key; - int recencyMove; Status status; Node prev; Node next;