Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Commit

Permalink
Fixes #145 - Rename package in opentracing-noop to io.opentracing.noop (
Browse files Browse the repository at this point in the history
#150)

Signed-off-by: Tomas Kraus <tomas.kraus@oracle.com>
  • Loading branch information
kratz74 authored and bhs committed Jun 2, 2017
1 parent 1b98a26 commit 6dee0c9
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import io.opentracing.ActiveSpan;
import io.opentracing.ActiveSpanSource;
import io.opentracing.BaseSpan;
import io.opentracing.NoopActiveSpanSource;
import io.opentracing.noop.NoopActiveSpanSource;
import io.opentracing.References;
import io.opentracing.Span;
import io.opentracing.SpanContext;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package io.opentracing;
package io.opentracing.noop;

import io.opentracing.ActiveSpan;
import io.opentracing.ActiveSpanSource;
import io.opentracing.Span;
import io.opentracing.SpanContext;

import java.util.Map;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package io.opentracing;
package io.opentracing.noop;

import io.opentracing.Span;
import io.opentracing.SpanContext;

import java.util.Map;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package io.opentracing;
package io.opentracing.noop;

import io.opentracing.ActiveSpan;
import io.opentracing.BaseSpan;
import io.opentracing.Span;
import io.opentracing.SpanContext;
import io.opentracing.Tracer;

import java.util.Collections;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package io.opentracing;
package io.opentracing.noop;

import io.opentracing.SpanContext;

import java.util.Collections;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package io.opentracing;
package io.opentracing.noop;

import io.opentracing.ActiveSpan;
import io.opentracing.Span;
import io.opentracing.SpanContext;
import io.opentracing.Tracer;
import io.opentracing.propagation.Format;

public interface NoopTracer extends Tracer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package io.opentracing;
package io.opentracing.noop;

public final class NoopTracerFactory {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
package io.opentracing.util;

import io.opentracing.ActiveSpan;
import io.opentracing.NoopTracer;
import io.opentracing.NoopTracerFactory;
import io.opentracing.noop.NoopTracer;
import io.opentracing.noop.NoopTracerFactory;
import io.opentracing.Span;
import io.opentracing.SpanContext;
import io.opentracing.Tracer;
Expand Down Expand Up @@ -75,7 +75,7 @@ private GlobalTracer() {
* <p>
* All methods are forwarded to the currently configured tracer.<br>
* Until a tracer is {@link #register(Tracer) explicitly configured},
* the {@link io.opentracing.NoopTracer NoopTracer} is used.
* the {@link io.opentracing.noop.NoopTracer NoopTracer} is used.
*
* @return The global tracer constant.
* @see #register(Tracer)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
*/
package io.opentracing.util;

import io.opentracing.NoopSpanBuilder;
import io.opentracing.NoopTracerFactory;
import io.opentracing.noop.NoopSpanBuilder;
import io.opentracing.noop.NoopTracerFactory;
import io.opentracing.SpanContext;
import io.opentracing.Tracer;
import io.opentracing.propagation.Format;
Expand Down

0 comments on commit 6dee0c9

Please sign in to comment.