aboutsummaryrefslogtreecommitdiffstats
path: root/guava/src/com/google/common/annotations/Beta.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/annotations/Beta.java')
-rw-r--r--guava/src/com/google/common/annotations/Beta.java11
1 files changed, 2 insertions, 9 deletions
diff --git a/guava/src/com/google/common/annotations/Beta.java b/guava/src/com/google/common/annotations/Beta.java
index 5eefe9a..07009b0 100644
--- a/guava/src/com/google/common/annotations/Beta.java
+++ b/guava/src/com/google/common/annotations/Beta.java
@@ -26,15 +26,7 @@ import java.lang.annotation.Target;
* Signifies that a public API (public class, method or field) is subject to
* incompatible changes, or even removal, in a future release. An API bearing
* this annotation is exempt from any compatibility guarantees made by its
- * containing library. Note that the presence of this annotation implies nothing
- * about the quality or performance of the API in question, only the fact that
- * it is not "API-frozen."
- *
- * <p>It is generally safe for <i>applications</i> to depend on beta APIs, at
- * the cost of some extra work during upgrades. However it is generally
- * inadvisable for <i>libraries</i> (which get included on users' CLASSPATHs,
- * outside the library developers' control) to do so.
- *
+ * containing library.
*
* @author Kevin Bourrillion
*/
@@ -47,4 +39,5 @@ import java.lang.annotation.Target;
ElementType.TYPE})
@Documented
@GwtCompatible
+@Beta
public @interface Beta {}