Skip to content

Commit

Permalink
Bump checker-framework to v3.37.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PawelLipski committed Aug 10, 2023
1 parent b245d81 commit f289444
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ protected Map<IGitCoreCommitHash, Seq<IBranchReference>> deriveBranchesContainin
.map(reflogCommitHashAndBranch -> reflogCommitHashAndBranch._2));

LOG.debug("Derived the map of branches containing given commit in reflog:");
LOG.debug(() -> result.toList().map(kv -> kv._1 + " -> " + kv._2.mkString(", "))

LOG.debug(() -> result.toList().map(kv -> {
@SuppressWarnings("nullness:dereference.of.nullable") val values = kv._2.mkString(", ");
return kv._1 + " -> " + values;
})
.sorted().mkString(System.lineSeparator()));
branchesContainingGivenCommitInReflog = result;
return result;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class CheckoutFirstChildAction extends BaseCheckoutAction
if (currentBranch != null) {
val childBranches = currentBranch.getChildren();
if (childBranches.nonEmpty()) {
val targetBranch = childBranches.get(0);
@SuppressWarnings("allcheckers:assignment") val targetBranch = childBranches.get(0);
return targetBranch.getName();
}
}
Expand Down
3 changes: 1 addition & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[versions]
# @pin until Checker gets fixed (OOM in CI on 3.35.0)
checker = "3.34.0"
checker = "3.37.0"
junitJupiter = "5.10.0"

[libraries]
Expand Down

0 comments on commit f289444

Please sign in to comment.