package de.take_weiland.mods.commons;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.SOURCE;
/**
* Objects marked with this Annotation should be treated carefully as they perform potentially unsafe operations if used incorrectly.
*
* @author diesieben07
*/
@Target({ TYPE, METHOD, CONSTRUCTOR, FIELD })
@Retention(SOURCE)
public @interface Unsafe {
}