Skip to content

Commit

Permalink
Removed unneeded class
Browse files Browse the repository at this point in the history
  • Loading branch information
mircokroon committed Feb 8, 2024
1 parent b9ab3d5 commit 0f9cedc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 52 deletions.
1 change: 0 additions & 1 deletion src/main/java/game/data/chunk/ChunkFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ public void clear() {
*/
private static Chunk getVersionedChunk(int dataVersion, CoordinateDim2D chunkPos) {
return VersionReporter.select(dataVersion, Chunk.class,
Option.of(Version.V1_20_2, () -> new Chunk_1_20_2(chunkPos, dataVersion)),
Option.of(Version.V1_20, () -> new Chunk_1_20(chunkPos, dataVersion)),
Option.of(Version.V1_18, () -> new Chunk_1_18(chunkPos, dataVersion)),
Option.of(Version.V1_17, () -> new Chunk_1_17(chunkPos, dataVersion)),
Expand Down
51 changes: 0 additions & 51 deletions src/main/java/game/data/chunk/version/Chunk_1_20_2.java

This file was deleted.

0 comments on commit 0f9cedc

Please sign in to comment.