Add a Javadoc comment to the Nullable annotation class.

This commit is contained in:
Karthick Sankarachary 2016-05-27 11:53:16 -07:00
parent ad3f4804f4
commit cc06b02e0c

View File

@ -4,6 +4,9 @@ import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Allows an config property to be {@code null}.
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface Nullable {