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

Update dependency com.github.ben-manes.caffeine:caffeine to v3.1.3 (release/4.2.x) #3170

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion metrics-caffeine3/pom.xml
Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>3.1.2</version>
<version>3.1.3</version>
</dependency>
<dependency>
<groupId>org.checkerframework</groupId>
Expand Down
Expand Up @@ -26,7 +26,7 @@
import org.junit.Test;

/**
* An example of exporting stats to Dropwizard Metrics (http://metrics.dropwizard.io).
* An example of exporting stats to <a href="https://metrics.dropwizard.io">Dropwizard Metrics</a>.
*
* @author ben.manes@gmail.com (Ben Manes)
* @author John Karp
Expand All @@ -52,7 +52,7 @@ public void basicUsage() {

// Perform application work
for (int i = 0; i < 4; i++) {
cache.get(1);
Integer unused = cache.get(1);
}

assertEquals(3L, cache.stats().hitCount());
Expand Down