|
3 | 3 | import com.google.common.base.Preconditions;
|
4 | 4 | import org.bukkit.block.data.BlockData;
|
5 | 5 | import org.bukkit.inventory.ItemStack;
|
6 |
| -import org.jetbrains.annotations.ApiStatus; |
7 | 6 | import org.jetbrains.annotations.NotNull;
|
8 | 7 |
|
9 | 8 | public enum Particle implements Keyed {
|
@@ -117,18 +116,18 @@ public enum Particle implements Keyed {
|
117 | 116 | SONIC_BOOM("sonic_boom"),
|
118 | 117 | SCULK_SOUL("sculk_soul"),
|
119 | 118 | /**
|
120 |
| - * Use {@link Float} as DataType |
| 119 | + * Uses {@link Float} as DataType |
121 | 120 | */
|
122 | 121 | SCULK_CHARGE("sculk_charge", Float.class),
|
123 | 122 | SCULK_CHARGE_POP("sculk_charge_pop"),
|
124 | 123 | /**
|
125 |
| - * Use {@link Integer} as DataType |
| 124 | + * Uses {@link Integer} as DataType |
126 | 125 | */
|
127 | 126 | SHRIEK("shriek", Integer.class),
|
128 | 127 | CHERRY_LEAVES("cherry_leaves"),
|
129 | 128 | PALE_OAK_LEAVES("pale_oak_leaves"),
|
130 | 129 | /**
|
131 |
| - * Use {@link Color} as DataType (with alpha support) |
| 130 | + * Uses {@link Color} as DataType (with alpha support) |
132 | 131 | */
|
133 | 132 | TINTED_LEAVES("tinted_leaves", Color.class),
|
134 | 133 | EGG_CRACK("egg_crack"),
|
|
0 commit comments