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

Comment changes #6700

Merged
merged 7 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge ../checker-framework-branch-master into store-fields
  • Loading branch information
mernst committed Jun 10, 2024
commit 25b845792e98edfc404ec81b6dde00af74e564cf
Original file line number Diff line number Diff line change
Expand Up @@ -380,10 +380,7 @@ protected String visualizeBlockTransferInputHelper(

StringBuilder sbStore = new StringBuilder();
if (verbose) {
sbStore.append(
"storesFrom = "
+ (storesFrom == null ? "null" : storesFrom.getClassAndUid())
+ separator);
sbStore.append((storesFromId == null ? "null" : storesFromId.getClassAndUid()) + separator);
}
sbStore.append(where == VisualizeWhere.BEFORE ? "Before: " : "After: ");

Expand Down
14 changes: 14 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ Version 3.45.0 (July 2, 2024)

**Implementation details:**

Added a `Tree` argument to `AnnotatedTypes.adaptParameters()`

Deprecated methods:
* `TreeUtils.isVarArgs()` => `isVarargsCall()`
* `TreeUtils.isVarArgMethodCall()` => `isVarargsCall()`

**Closed issues:**


Version 3.44.0 (June 3, 2024)
-----------------------------

**Implementation details:**

Removed methods:
* `AbstractAnalysis.readFromStore()`: use `Map.get()`

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.