Skip to content

Commit

Permalink
Minor style tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
solnic committed Aug 31, 2024
1 parent 4e0424b commit 6cc823c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sentry-ruby/lib/sentry/vernier/output.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def frames
funcs = stack_table_hash[:frame_table].fetch(:func)
lines = stack_table_hash[:func_table].fetch(:first_line)

funcs.map { |idx|
funcs.map do |idx|
function, mod = split_module(stack_table_hash[:func_table][:name][idx])

abs_path = stack_table_hash[:func_table][:filename][idx]
Expand All @@ -72,7 +72,7 @@ def frames
lineno: (lineno = lines[idx]) > 0 ? lineno : nil,
in_app: in_app
}.compact
}
end
end

def stacks
Expand Down

0 comments on commit 6cc823c

Please sign in to comment.