提交 8ff1491a authored 作者: noelgrandin's avatar noelgrandin

fix call to Map#remove(Object) with wrong type (found by FindBugs)

上级 4fba902a
...@@ -311,8 +311,8 @@ public class MVStore { ...@@ -311,8 +311,8 @@ public class MVStore {
* @param name the map name * @param name the map name
*/ */
void removeMap(String name) { void removeMap(String name) {
MVMap<?, ?> m = maps.remove(name); MVMap<?, ?> map = maps.remove(name);
mapsChanged.remove(m); mapsChanged.remove(map.getId());
} }
private String getDataType(Class<?> clazz) { private String getDataType(Class<?> clazz) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论