Skip to content

Commit 1c85f06

Browse files
committed
fix access modifiers, no need for public API
1 parent 126ef4b commit 1c85f06

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

inferred-spans/src/main/java/io/opentelemetry/contrib/inferredspans/InferredSpansProcessorBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,13 +195,13 @@ public InferredSpansProcessorBuilder startScheduledProfiling(boolean startSchedu
195195
}
196196

197197
/** For testing only. */
198-
public InferredSpansProcessorBuilder activationEventsFile(@Nullable File activationEventsFile) {
198+
InferredSpansProcessorBuilder activationEventsFile(@Nullable File activationEventsFile) {
199199
this.activationEventsFile = activationEventsFile;
200200
return this;
201201
}
202202

203203
/** For testing only. */
204-
public InferredSpansProcessorBuilder jfrFile(@Nullable File jfrFile) {
204+
InferredSpansProcessorBuilder jfrFile(@Nullable File jfrFile) {
205205
this.jfrFile = jfrFile;
206206
return this;
207207
}

0 commit comments

Comments
 (0)