Skip to content

Commit

Permalink
make Trace class public (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
qinfchen authored and iamdanfox committed Sep 6, 2018
1 parent 84c213d commit 2d95825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracing/src/main/java/com/palantir/tracing/Trace.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* Represents a trace as an ordered list of non-completed spans. Supports adding and removing of spans. This class is
* not thread-safe and is intended to be used in a thread-local context.
*/
final class Trace {
public final class Trace {

private final Deque<OpenSpan> stack;
private final boolean isObservable;
Expand Down

0 comments on commit 2d95825

Please sign in to comment.