File tree 2 files changed +2
-2
lines changed
dd-java-agent/testing/src/main/groovy/datadog/trace/agent/test/asserts
dd-trace-core/src/main/java/datadog/trace/core
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class LinksAssert {
14
14
private final Set<AgentSpanLink > assertedLinks = []
15
15
16
16
private LinksAssert (DDSpan span ) {
17
- this . links = span. links // this is class protected but for the moment groovy can access it
17
+ this . links = span. links // this is class private but for the moment groovy can access it
18
18
}
19
19
20
20
static void assertLinks (DDSpan span ,
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ static DDSpan create(
107
107
*/
108
108
private volatile int longRunningVersion = 0 ;
109
109
110
- protected final List <AgentSpanLink > links ;
110
+ private final List <AgentSpanLink > links ;
111
111
112
112
/**
113
113
* Spans should be constructed using the builder, not by calling the constructor directly.
You can’t perform that action at this time.
0 commit comments