提交 3a222572 authored 作者: Noel Grandin's avatar Noel Grandin

can use local var here

上级 7db2444c
...@@ -228,7 +228,7 @@ public class ValueHashMap<V> extends HashBase { ...@@ -228,7 +228,7 @@ public class ValueHashMap<V> extends HashBase {
keysIndex++; keysIndex++;
Value key = keys[keysIndex]; Value key = keys[keysIndex];
if (key != null && key != ValueNull.DELETED) if (key != null && key != ValueNull.DELETED)
return new AbstractMap.SimpleImmutableEntry<Value, V>(keys[keysIndex], values[keysIndex]); return new AbstractMap.SimpleImmutableEntry<Value, V>(key, values[keysIndex]);
} }
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论