You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ja...@apache.org on 2009/07/09 04:11:20 UTC

svn commit: r792379 - /geronimo/specs/trunk/geronimo-annotation_1.0-MR1_spec/src/main/java/javax/annotation/security/DenyAll.java

Author: janb
Date: Thu Jul  9 02:11:19 2009
New Revision: 792379

URL: http://svn.apache.org/viewvc?rev=792379&view=rev
Log:
Forgot curly braces around list for applicable targets.

Modified:
    geronimo/specs/trunk/geronimo-annotation_1.0-MR1_spec/src/main/java/javax/annotation/security/DenyAll.java

Modified: geronimo/specs/trunk/geronimo-annotation_1.0-MR1_spec/src/main/java/javax/annotation/security/DenyAll.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-annotation_1.0-MR1_spec/src/main/java/javax/annotation/security/DenyAll.java?rev=792379&r1=792378&r2=792379&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-annotation_1.0-MR1_spec/src/main/java/javax/annotation/security/DenyAll.java (original)
+++ geronimo/specs/trunk/geronimo-annotation_1.0-MR1_spec/src/main/java/javax/annotation/security/DenyAll.java Thu Jul  9 02:11:19 2009
@@ -35,7 +35,7 @@
  */
 
 @Documented
-@Target(ElementType.TYPE, ElementType.METHOD)
+@Target({ElementType.TYPE, ElementType.METHOD})
 @Retention(RetentionPolicy.RUNTIME)
 public @interface DenyAll {
 }