3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-07-23 02:28:02 +02:00

Fix fawe-deprecation javadoc linking

Dieser Commit ist enthalten in:
NotMyFault 2021-08-05 18:33:19 +02:00
Ursprung c468d22120
Commit 14fc2dbf9b
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 158F5701A6AAD00C
7 geänderte Dateien mit 7 neuen und 7 gelöschten Zeilen

Datei anzeigen

@ -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 =

Datei anzeigen

@ -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;

Datei anzeigen

@ -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;

Datei anzeigen

@ -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 {
/**

Datei anzeigen

@ -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;

Datei anzeigen

@ -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 {
/**

Datei anzeigen

@ -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) {