You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2007/07/11 12:20:57 UTC

svn commit: r555231 - /harmony/enhanced/classlib/trunk/modules/annotation/src/main/java/java/lang/annotation/Retention.java

Author: tellison
Date: Wed Jul 11 03:20:55 2007
New Revision: 555231

URL: http://svn.apache.org/viewvc?view=rev&rev=555231
Log:
Retention value should not have a default declared.

Modified:
    harmony/enhanced/classlib/trunk/modules/annotation/src/main/java/java/lang/annotation/Retention.java

Modified: harmony/enhanced/classlib/trunk/modules/annotation/src/main/java/java/lang/annotation/Retention.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/annotation/src/main/java/java/lang/annotation/Retention.java?view=diff&rev=555231&r1=555230&r2=555231
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/annotation/src/main/java/java/lang/annotation/Retention.java (original)
+++ harmony/enhanced/classlib/trunk/modules/annotation/src/main/java/java/lang/annotation/Retention.java Wed Jul 11 03:20:55 2007
@@ -29,5 +29,5 @@
 @Retention(RetentionPolicy.RUNTIME)
 @Target(ElementType.ANNOTATION_TYPE)
 public @interface Retention {
-    RetentionPolicy value() default RetentionPolicy.CLASS;
+    RetentionPolicy value();
 }