Skip to content

Commit

Permalink
change access modifier for constants
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhmaurya committed Aug 3, 2023
1 parent 9977eda commit 3a79984
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ public class DiagnosticsEventListener implements TraceEventListener {
/**
* Key used to store the start time of a span in the span attributes (timestamp in milliseconds).
*/
protected final static String START_SPAN_TIME = "start_span_time";
public final static String START_SPAN_TIME = "start_span_time";

/**
* Key used to store the elapsed time of a span in the span attributes (duration in milliseconds).
*/
protected final static String ELAPSED_TIME = "elapsed_time";
public final static String ELAPSED_TIME = "elapsed_time";

/**
* Constructs a new DiagnosticsTraceEventListener with the specified tracer, thread resource recorder,
Expand Down

0 comments on commit 3a79984

Please sign in to comment.