Skip to content

Commit b026174

Browse files
committed
Removing boolean return
1 parent 1c82f33 commit b026174

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dd-trace-core/src/main/java/datadog/trace/core/DDSpanContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -810,7 +810,7 @@ private boolean precheckIntercept(String tag) {
810810
* The TagMap isn't optimized and will need to box the primitive regardless of
811811
* tag interception
812812
*/
813-
private boolean setBox(String tag, Object box) {
813+
private void setBox(String tag, Object box) {
814814
if (tagInterceptor.interceptTag(this, tag, box)) {
815815
synchronized (unsafeTags) {
816816
unsafeTags.set(tag, box);

0 commit comments

Comments
 (0)