Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove SpanData #44

Merged
merged 1 commit into from
Aug 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion api/lib/opentelemetry/trace.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
# SPDX-License-Identifier: Apache-2.0

require 'opentelemetry/trace/span_context'
require 'opentelemetry/trace/span_data'
require 'opentelemetry/trace/span_kind'
require 'opentelemetry/trace/span'
require 'opentelemetry/trace/tracer'
49 changes: 0 additions & 49 deletions api/lib/opentelemetry/trace/span_data.rb

This file was deleted.

4 changes: 0 additions & 4 deletions api/lib/opentelemetry/trace/tracer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,6 @@ def start_span(name, with_parent: nil, with_parent_context: nil, sampler: nil, l
end
end

def record_span_data(span_data)
raise ArgumentError if span_data.nil?
end

def binary_format
BINARY_FORMAT
end
Expand Down