Skip to content

Commit

Permalink
Remove unused type, add some @ApiStatus.Internal annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
Gegy committed Jun 8, 2024
1 parent a66fd12 commit 4b1c270
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 174 deletions.
174 changes: 0 additions & 174 deletions src/main/java/xyz/nucleoid/fantasy/util/FilteredRegistry.java

This file was deleted.

3 changes: 3 additions & 0 deletions src/main/java/xyz/nucleoid/fantasy/util/SafeIterator.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
package xyz.nucleoid.fantasy.util;

import org.jetbrains.annotations.ApiStatus;

import java.util.Collection;
import java.util.Iterator;

@ApiStatus.Internal
public final class SafeIterator<T> implements Iterator<T> {
private final Object[] values;
private int index = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
import net.minecraft.server.WorldGenerationProgressListener;
import net.minecraft.util.math.ChunkPos;
import net.minecraft.world.chunk.ChunkStatus;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.Nullable;

@ApiStatus.Internal
public final class VoidWorldProgressListener implements WorldGenerationProgressListener {
public static final VoidWorldProgressListener INSTANCE = new VoidWorldProgressListener();

Expand Down

0 comments on commit 4b1c270

Please sign in to comment.