blob: 3b10c62cb655740a4001b6ef07b8cc9c880efd95 [file] [log] [blame]
/*
* Copyright 2015, Yahoo! Inc.
* Licensed under the terms of the Apache License 2.0. See LICENSE file at the project root for terms.
*/
package com.yahoo.sketches.hll;
/**
* @author Kevin Lang
*/
class DenseFieldsFactory implements FieldsFactory {
@Override
public Fields make(Preamble preamble) {
return new OnHeapFields(preamble);
}
}