Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 15201 invoked from network); 9 Jul 2009 02:11:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 9 Jul 2009 02:11:34 -0000 Received: (qmail 53189 invoked by uid 500); 9 Jul 2009 02:11:44 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 53116 invoked by uid 500); 9 Jul 2009 02:11:44 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 53107 invoked by uid 99); 9 Jul 2009 02:11:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Jul 2009 02:11:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Jul 2009 02:11:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4BB6E2388896; Thu, 9 Jul 2009 02:11:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r792379 - /geronimo/specs/trunk/geronimo-annotation_1.0-MR1_spec/src/main/java/javax/annotation/security/DenyAll.java Date: Thu, 09 Jul 2009 02:11:20 -0000 To: scm@geronimo.apache.org From: janb@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090709021120.4BB6E2388896@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 { }