mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-01 02:46:41 +00:00
Generify BlockMap
(cherry picked from commit 7384b6973498084f4082d7e1a805b84b13a3ba44)
This commit is contained in:
@ -34,9 +34,9 @@ import static com.google.common.base.Preconditions.checkNotNull;
|
||||
public class SetBlockMap implements Operation {
|
||||
|
||||
private final Extent extent;
|
||||
private final BlockMap blocks;
|
||||
private final BlockMap<BaseBlock> blocks;
|
||||
|
||||
public SetBlockMap(Extent extent, BlockMap blocks) {
|
||||
public SetBlockMap(Extent extent, BlockMap<BaseBlock> blocks) {
|
||||
this.extent = checkNotNull(extent);
|
||||
this.blocks = checkNotNull(blocks);
|
||||
}
|
||||
|
Reference in New Issue
Block a user