Skip to content

Commit eb37ffe

Browse files
committed
spotlessApply
1 parent 2d6a796 commit eb37ffe

File tree

1 file changed

+1
-2
lines changed
  • instrumentation/apache-dubbo-2.7/library-autoconfigure/src/main/java/io/opentelemetry/instrumentation/apachedubbo/v2_7

1 file changed

+1
-2
lines changed

instrumentation/apache-dubbo-2.7/library-autoconfigure/src/main/java/io/opentelemetry/instrumentation/apachedubbo/v2_7/DubboHeadersGetter.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ public Iterable<String> keys(DubboRequest request) {
2020
RpcInvocation invocation = request.invocation();
2121
try {
2222
// In 2.7.6, 2.7.7, the StringToObjectMap implementation does not correctly retrieve the
23-
// keySet.
24-
// Therefore, it's advisable to always call getObjectAttachments when it is available.
23+
// keySet. Therefore, it's advisable to always call getObjectAttachments when it is available.
2524
Method getObjectAttachmentsMethod = invocation.getClass().getMethod("getObjectAttachments");
2625
if (getObjectAttachmentsMethod != null) {
2726
return ((Map<String, Object>) getObjectAttachmentsMethod.invoke(invocation)).keySet();

0 commit comments

Comments
 (0)