Skip to content

Commit

Permalink
Merge pull request #263 from usethesource/dependabot/maven/checker-fr…
Browse files Browse the repository at this point in the history
…amework-e9862a8d16
  • Loading branch information
dependabot[bot] authored Sep 2, 2024
2 parents c3d43a1 + 7aacfa0 commit d5666ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<checkerframework.version>3.42.0</checkerframework.version>
<checkerframework.version>3.46.0</checkerframework.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public void put(int size, T returned) {
private static final ConcurrentLinkedQueue<WeakReference<CacheFactory<?>>> CLEANUP_CACHES = new ConcurrentLinkedQueue<>();


@SuppressWarnings("argument") // passed in reference might not be completly initialized
@SuppressWarnings({"argument", "arguments"}) // passed in reference might not be completly initialized
private static void registerInstance(@UnknownInitialization CacheFactory<?> cache) {
CLEANUP_CACHES.add(new WeakReference<>(cache));
}
Expand Down

0 comments on commit d5666ef

Please sign in to comment.