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:
Jason Tedor 2016-10-18 10:07:16 -04:00
parent d30de66949
commit 9bb8bd0578
1 changed files with 2 additions and 2 deletions

View File

@ -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