Skip to content

Commit

Permalink
correct spelling error (#3645)
Browse files Browse the repository at this point in the history
  • Loading branch information
kexianjun authored and ralf0131 committed Mar 14, 2019
1 parent 9598cd0 commit ed5fea6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ private <T> ExporterChangeableWrapper<T> doLocalExport(final Invoker<T> originIn
String key = getCacheKey(originInvoker);

return (ExporterChangeableWrapper<T>) bounds.computeIfAbsent(key, s -> {
Invoker<?> invokerDelegete = new InvokerDelegate<>(originInvoker, providerUrl);
return new ExporterChangeableWrapper<>((Exporter<T>) protocol.export(invokerDelegete), originInvoker);
Invoker<?> invokerDelegate = new InvokerDelegate<>(originInvoker, providerUrl);
return new ExporterChangeableWrapper<>((Exporter<T>) protocol.export(invokerDelegate), originInvoker);
});
}

Expand Down

0 comments on commit ed5fea6

Please sign in to comment.