项目:pre-cu
文件:AutoDeltaStringShortMap.java
public AutoDeltaStringShortMap() {
this.changes = new ArrayList<>(5);
this.container = new TObjectShortHashMap<>();
this.baselineCommandCount = 0;
}
项目:pre-cu
文件:AutoDeltaObjectShortMap.java
public AutoDeltaObjectShortMap(Function<ByteBuffer,K> keyCreator) {
this.changes = new ArrayList<>(5);
this.container = new TObjectShortHashMap<>();
this.baselineCommandCount = 0;
this.keyCreator = keyCreator;
}