9
0
mirror of https://github.com/BX-Team/DivineMC.git synced 2025-12-23 00:39:16 +00:00

another patch applies

This commit is contained in:
NONPLAYT
2025-07-09 03:03:03 +03:00
parent 54033bb593
commit 86763bcff4
21 changed files with 257 additions and 960 deletions

View File

@@ -0,0 +1,13 @@
package gg.pufferfish.pufferfish.util;
import java.util.Iterator;
import org.jetbrains.annotations.NotNull;
public record IterableWrapper<T>(Iterator<T> iterator) implements Iterable<T> {
@NotNull
@Override
public Iterator<T> iterator() {
return iterator;
}
}