Skip to content

Commit

Permalink
Correct spelling error (#3146)
Browse files Browse the repository at this point in the history
  • Loading branch information
kexianjun authored and ralf0131 committed Jan 4, 2019
1 parent 4b2b673 commit ba27bc5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -263,8 +263,8 @@ private <T> ExporterChangeableWrapper doChangeLocalExport(final Invoker<T> origi
if (exporter == null) {
logger.warn(new IllegalStateException("error state, exporter should not be null"));
} else {
final Invoker<T> invokerDelegete = new InvokerDelegate<T>(originInvoker, newInvokerUrl);
exporter.setExporter(protocol.export(invokerDelegete));
final Invoker<T> invokerDelegate = new InvokerDelegate<T>(originInvoker, newInvokerUrl);
exporter.setExporter(protocol.export(invokerDelegate));
}
return exporter;
}
Expand Down

0 comments on commit ba27bc5

Please sign in to comment.