Skip to content

Commit 1edfda9

Browse files
committed
fix: rubocop failures
Signed-off-by: Arjun Rajappa <arjun.rajappa@ibm.com>
1 parent ff1ef36 commit 1edfda9

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

lib/instana/trace/span.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,13 @@ def add_stack(span_stack_config: nil, stack: Kernel.caller)
8787

8888
@attributes[:stack] = stack
8989
.map do |call|
90-
file, line, *method = call.split(':')
90+
file, line, *method = call.split(':')
9191

92-
{
93-
c: file,
94-
n: line,
95-
m: method.join(' ')
96-
}
92+
{
93+
c: file,
94+
n: line,
95+
m: method.join(' ')
96+
}
9797
end.take([limit, 40].min)
9898
end
9999

0 commit comments

Comments
 (0)