Fix fawe-deprecation javadoc linking

This commit is contained in:
NotMyFault 2021-08-05 18:33:19 +02:00
parent c468d22120
commit 14fc2dbf9b
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C
7 changed files with 7 additions and 7 deletions

View File

@ -37,7 +37,7 @@ import java.util.function.Function;
*
* @deprecated JNBT is being removed in WE8.
*/
@Deprecated
@Deprecated(forRemoval = true)
public class AdventureNBTConverter {
private static final BiMap<Class<? extends Tag>, BinaryTagType<?>> TAG_TYPES =

View File

@ -27,7 +27,7 @@ import java.nio.charset.StandardCharsets;
*
* @deprecated JNBT is being removed for adventure-nbt in WorldEdit 8.
*/
@Deprecated
@Deprecated(forRemoval = true)
public final class NBTConstants {
public static final Charset CHARSET = StandardCharsets.UTF_8;

View File

@ -45,7 +45,7 @@ import java.util.Map;
*
* @deprecated JNBT is being removed for adventure-nbt in WorldEdit 8.
*/
@Deprecated
@Deprecated(forRemoval = true)
public final class NBTInputStream implements Closeable {
private final DataInputStream is;

View File

@ -46,7 +46,7 @@ import static com.google.common.base.Preconditions.checkNotNull;
*
* @deprecated JNBT is being removed for adventure-nbt in WorldEdit 8.
*/
@Deprecated
@Deprecated(forRemoval = true)
public final class NBTOutputStream extends OutputStream implements Closeable, DataOutput {
/**

View File

@ -26,7 +26,7 @@ import static com.google.common.base.Preconditions.checkNotNull;
*
* @deprecated JNBT is being removed for adventure-nbt in WorldEdit 8.
*/
@Deprecated
@Deprecated(forRemoval = true)
public class NamedTag {
private final String name;

View File

@ -26,7 +26,7 @@ import com.sk89q.worldedit.util.nbt.BinaryTagLike;
*
* @deprecated JNBT is being removed for adventure-nbt in WorldEdit 8.
*/
@Deprecated
@Deprecated(forRemoval = true)
public abstract class Tag implements BinaryTagLike {
/**

View File

@ -64,7 +64,7 @@ public class BaseBlock implements BlockStateHolder<BaseBlock>, TileEntityBlock {
* Construct a block with the given type and default data.
*
* @param blockType The block type
* @deprecated Just use the BlockType.getDefaultState()
* @deprecated FAWE deprecation - Just use the {@link BlockType#getDefaultState()}
*/
@Deprecated
public BaseBlock(BlockType blockType) {