Skip to content

Commit

Permalink
Fix format in LocalActionsDataProvider
Browse files Browse the repository at this point in the history
Signed-off-by: Yannic Bonenberger <[email protected]>
  • Loading branch information
Yannic committed Jan 17, 2025
1 parent c31465a commit c3ab66d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ 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 c3ab66d

Please sign in to comment.