Fix typo in param. name in TransportService method
This commit fixes a typo in a parameter name for the TransportService#setTracerLogExclude method. Relates #20970
This commit is contained in:
parent
d30de66949
commit
9bb8bd0578
|
@ -173,8 +173,8 @@ public class TransportService extends AbstractLifecycleComponent {
|
|||
this.tracerLogInclude = tracerLogInclude.toArray(Strings.EMPTY_ARRAY);
|
||||
}
|
||||
|
||||
void setTracerLogExclude(List<String> tracelLogExclude) {
|
||||
this.tracerLogExclude = tracelLogExclude.toArray(Strings.EMPTY_ARRAY);
|
||||
void setTracerLogExclude(List<String> tracerLogExclude) {
|
||||
this.tracerLogExclude = tracerLogExclude.toArray(Strings.EMPTY_ARRAY);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue