aboutsummaryrefslogtreecommitdiffstats
path: root/guava/src/com/google/common/annotations/GwtIncompatible.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/annotations/GwtIncompatible.java')
-rw-r--r--guava/src/com/google/common/annotations/GwtIncompatible.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/guava/src/com/google/common/annotations/GwtIncompatible.java b/guava/src/com/google/common/annotations/GwtIncompatible.java
index a56d746..43ae705 100644
--- a/guava/src/com/google/common/annotations/GwtIncompatible.java
+++ b/guava/src/com/google/common/annotations/GwtIncompatible.java
@@ -36,12 +36,11 @@ import java.lang.annotation.Target;
* @author Charles Fry
*/
@Retention(RetentionPolicy.CLASS)
-@Target({
- ElementType.TYPE, ElementType.METHOD,
- ElementType.CONSTRUCTOR, ElementType.FIELD })
+@Target({ ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD })
@Documented
@GwtCompatible
public @interface GwtIncompatible {
+
/**
* Describes why the annotated element is incompatible with GWT. Since this is
* generally due to a dependence on a type/method which GWT doesn't support,
@@ -49,4 +48,5 @@ public @interface GwtIncompatible {
* "Class.isInstance".
*/
String value();
+
}