diff --git a/core/src/main/java/com/seibel/distanthorizons/core/file/fullDatafile/FullDataSourceProviderV2.java b/core/src/main/java/com/seibel/distanthorizons/core/file/fullDatafile/FullDataSourceProviderV2.java index 080d3ab77..795ffb15c 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/file/fullDatafile/FullDataSourceProviderV2.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/file/fullDatafile/FullDataSourceProviderV2.java @@ -167,13 +167,6 @@ public class FullDataSourceProviderV2 @Override protected FullDataSourceV2 createDataSourceFromDto(FullDataSourceV2DTO dto) throws InterruptedException, IOException { return dto.createPooledDataSource(this.level.getLevelWrapper()); } - @Override - protected FullDataSourceV2 createNewDataSourceFromExistingDtos(DhSectionPos pos) - { - // TODO maybe just set children update flags to true? - // TODO is any special logic necessary? All DTOs should be generated using their children via the update system anyway - return FullDataSourceV2.DATA_SOURCE_POOL.getPooledSource(pos, true); - } @Override protected FullDataSourceV2 makeEmptyDataSource(DhSectionPos pos) { return FullDataSourceV2.DATA_SOURCE_POOL.getPooledSource(pos, true); }