提交 673fe5f7 authored 作者: Noel Grandin's avatar Noel Grandin

redundant super interfaces

上级 792ca140
......@@ -24,7 +24,7 @@ import org.h2.value.ValueArray;
* and it is also used directly by the ResultSet class in the embedded mode.
* If the result does not fit in memory, it is written to a temporary file.
*/
public class LocalResult implements ResultInterface, ResultTarget, AutoCloseable {
public class LocalResult implements ResultInterface, ResultTarget {
private int maxMemoryRows;
private Session session;
......
......@@ -12,7 +12,6 @@ import java.util.Iterator;
import java.util.Map;
import java.util.NoSuchElementException;
import java.util.Set;
import org.h2.mvstore.DataUtils;
import org.h2.mvstore.type.DataType;
import org.h2.mvstore.type.ObjectDataType;
......@@ -24,8 +23,7 @@ import org.h2.mvstore.type.ObjectDataType;
* @param <K> the key type
* @param <V> the value type
*/
public class ShardedMap<K, V> extends AbstractMap<K, V>
implements Map<K, V> {
public class ShardedMap<K, V> extends AbstractMap<K, V> {
private final DataType keyType;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论