Ops, forgot to remove this unused override in DataSourceProvider

This commit is contained in:
James Seibel
2024-04-20 12:35:48 -05:00
parent 3826c83d89
commit 459bc5fc0c
@@ -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); }