All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.api.RemovedFromNewRakNet Maven / Gradle / Ivy

Go to download

A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.

There is a newer version: 1.6.0.1-PN
Show newest version
package cn.nukkit.api;

import java.lang.annotation.*;

/**
 * Indicates that the annotated element was removed in the popular Cloudburst new-raknet branch, using it
 * will work in PowerNukkit and normal Nukkit but will cause issues in that branch or when the branch gets
 * merged.
 * 
 * @author joserobjr
 */
@PowerNukkitOnly
@Since("1.4.0.0-PN")
@Retention(RetentionPolicy.CLASS)
@Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.ANNOTATION_TYPE, ElementType.TYPE,
        ElementType.FIELD, ElementType.PACKAGE})
@Inherited
@Documented
public @interface RemovedFromNewRakNet {
    String value() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy