Merge pull request #1 from kiipy/patch-2

Fix minestom.com > minestom.net
This commit is contained in:
Kiip 2021-08-24 11:33:51 +02:00 committed by GitHub
commit 400520d4f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ public interface DataContainer {
* meaning that this will be null if no data has been defined. * meaning that this will be null if no data has been defined.
* *
* @return the {@link Data} of this container, can be null * @return the {@link Data} of this container, can be null
* @deprecated use the tag API https://wiki.minestom.com/feature/tags * @deprecated use the tag API https://wiki.minestom.net/feature/tags
*/ */
@Deprecated @Deprecated
@Nullable Data getData(); @Nullable Data getData();
@ -31,8 +31,8 @@ public interface DataContainer {
* on your use-case. * on your use-case.
* *
* @param data the new {@link Data} of this container, null to remove it * @param data the new {@link Data} of this container, null to remove it
* @deprecated use the tag API https://wiki.minestom.com/feature/tags * @deprecated use the tag API https://wiki.minestom.net/feature/tags
*/ */
@Deprecated @Deprecated
void setData(@Nullable Data data); void setData(@Nullable Data data);
} }