Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public int getIdentityHashCode() {
public Invoker<T> select(Invocation invocation) {
String key = toKey(invocation.getArguments());
byte[] digest = md5(key);
Invoker<T> invoker = sekectForKey(hash(digest, 0));
Invoker<T> invoker = selectForKey(hash(digest, 0));
return invoker;
}

Expand All @@ -103,7 +103,7 @@ private String toKey(Object[] args) {
return buf.toString();
}

private Invoker<T> sekectForKey(long hash) {
private Invoker<T> selectForKey(long hash) {
Invoker<T> invoker;
Long key = hash;
if (!virtualInvokers.containsKey(key)) {
Expand Down