File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
Bukkit/src/main/java/com/plotsquared/bukkit/listener Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change 106
106
import java .util .Iterator ;
107
107
import java .util .List ;
108
108
import java .util .Objects ;
109
- import java .util .Set ;
110
- import java .util .stream .Collectors ;
111
- import java .util .stream .Stream ;
112
109
113
110
import static org .bukkit .Tag .CORALS ;
114
111
import static org .bukkit .Tag .CORAL_BLOCKS ;
115
112
import static org .bukkit .Tag .WALL_CORALS ;
116
113
117
114
@ SuppressWarnings ("unused" )
118
115
public class BlockEventListener implements Listener {
119
-
120
- private static final Set <Material > SNOW = Stream .of (Material .values ()) // needed as Tag.SNOW isn't present in 1.16.5
121
- .filter (material -> material .name ().contains ("SNOW" ))
122
- .filter (Material ::isBlock )
123
- .collect (Collectors .toUnmodifiableSet ());
124
-
125
116
private final PlotAreaManager plotAreaManager ;
126
117
private final WorldEdit worldEdit ;
127
118
You can’t perform that action at this time.
0 commit comments