Skip to content

Commit

Permalink
Suppress false positive UL_UNRELEASED_LOCK
Browse files Browse the repository at this point in the history
  • Loading branch information
diegosalvi committed Feb 19, 2024
1 parent 0e3d8a9 commit b7395f5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -964,7 +964,8 @@ private void mergeAndUnlock(Block<K, V> mergeTarget,
mergeReferences.clear();
}

@SuppressFBWarnings("UL_UNRELEASED_LOCK", "false positive, locks are released in this method or in mergeAndUnlock")
@SuppressFBWarnings(value = "UL_UNRELEASED_LOCK",
justification = "false positive, locks are released in this method or in mergeAndUnlock")
public BlockRangeIndexMetadata<K> checkpoint() throws IOException {
final boolean fineEnabled = LOG.isLoggable(Level.FINE);

Expand Down

0 comments on commit b7395f5

Please sign in to comment.