Skip to content

Commit

Permalink
Fix format in LocalActionsDataProvider (#189)
Browse files Browse the repository at this point in the history
Signed-off-by: Yannic Bonenberger <[email protected]>
  • Loading branch information
Yannic authored Jan 17, 2025
1 parent c31465a commit 7fd2eae
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ Stream<LocalAction> coalesce(ProfileThread thread) {
Preconditions.checkArgument(
action.threadId == relatedEvents.peek().threadId,
"Thread ids must match %s != %s",
action.threadId == relatedEvents.peek().threadId);
action.threadId,
relatedEvents.peek().threadId);
related.add(relatedEvents.next());
}
out.accept(new LocalAction(action, related));
Expand Down

0 comments on commit 7fd2eae

Please sign in to comment.