Skip to content

Commit

Permalink
Fixed issue which was uncovered by unit tests.
Browse files Browse the repository at this point in the history
Signed-off-by: Juergen Fickel <juergen.fickel@bosch.io>
  • Loading branch information
Juergen Fickel committed Oct 21, 2022
1 parent 0323c01 commit bea541f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public PreparedKamonSpan tag(final Tag tag) {

@Override
public PreparedKamonSpan tags(final TagSet tags) {
spanBuilder.tag(KamonTagSetConverter.getKamonTagSet(tags));
spanBuilder.tag(KamonTagSetConverter.getKamonTagSet(checkNotNull(tags, "tags")));
return this;
}

Expand Down

0 comments on commit bea541f

Please sign in to comment.