577578579580581582583584585586
* * @return the disk store */ protected Store createDiskStore() { if (isDiskStore()) { return new DiskStore(this, diskStorePath); } else { return null; } }
671672673674675676677678679680