Skip to content

Commit

Permalink
fix Private as well
Browse files Browse the repository at this point in the history
  • Loading branch information
cloud-fan committed Nov 15, 2018
1 parent b71dd6d commit f43d409
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@

package org.apache.spark.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.annotation.*;

/**
* A class that is considered private to the internals of Spark -- there is a high-likelihood
Expand All @@ -35,6 +32,7 @@
* of the known issue that Scaladoc displays only either the annotation or the comment, whichever
* comes first.
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER,
ElementType.CONSTRUCTOR, ElementType.LOCAL_VARIABLE, ElementType.PACKAGE})
Expand Down

0 comments on commit f43d409

Please sign in to comment.