From 459bc5fc0c1f6855e67c283d63b9efea9e9e2435 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 20 Apr 2024 12:35:48 -0500 Subject: [PATCH] Ops, forgot to remove this unused override in DataSourceProvider --- .../core/file/fullDatafile/FullDataSourceProviderV2.java | 7 ------- 1 file changed, 7 deletions(-) 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); }