Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 43879 invoked from network); 10 Jul 2010 21:44:30 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 10 Jul 2010 21:44:30 -0000 Received: (qmail 61289 invoked by uid 500); 10 Jul 2010 21:44:30 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 61217 invoked by uid 500); 10 Jul 2010 21:44:29 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 61208 invoked by uid 99); 10 Jul 2010 21:44:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Jul 2010 21:44:29 +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; Sat, 10 Jul 2010 21:44:26 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 544742388993; Sat, 10 Jul 2010 21:43:03 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r962923 - in /tomcat/trunk/java/javax/annotation: PostConstruct.java PreDestroy.java security/DenyAll.java security/PermitAll.java Date: Sat, 10 Jul 2010 21:43:03 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100710214303.544742388993@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: markt Date: Sat Jul 10 21:43:02 2010 New Revision: 962923 URL: http://svn.apache.org/viewvc?rev=962923&view=rev Log: Eclipse warnings for annotations Modified: tomcat/trunk/java/javax/annotation/PostConstruct.java tomcat/trunk/java/javax/annotation/PreDestroy.java tomcat/trunk/java/javax/annotation/security/DenyAll.java tomcat/trunk/java/javax/annotation/security/PermitAll.java Modified: tomcat/trunk/java/javax/annotation/PostConstruct.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/javax/annotation/PostConstruct.java?rev=962923&r1=962922&r2=962923&view=diff ============================================================================== --- tomcat/trunk/java/javax/annotation/PostConstruct.java (original) +++ tomcat/trunk/java/javax/annotation/PostConstruct.java Sat Jul 10 21:43:02 2010 @@ -27,4 +27,5 @@ import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) public @interface PostConstruct { + // No attributes } Modified: tomcat/trunk/java/javax/annotation/PreDestroy.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/javax/annotation/PreDestroy.java?rev=962923&r1=962922&r2=962923&view=diff ============================================================================== --- tomcat/trunk/java/javax/annotation/PreDestroy.java (original) +++ tomcat/trunk/java/javax/annotation/PreDestroy.java Sat Jul 10 21:43:02 2010 @@ -27,4 +27,5 @@ import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) public @interface PreDestroy { + // No attributes } Modified: tomcat/trunk/java/javax/annotation/security/DenyAll.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/javax/annotation/security/DenyAll.java?rev=962923&r1=962922&r2=962923&view=diff ============================================================================== --- tomcat/trunk/java/javax/annotation/security/DenyAll.java (original) +++ tomcat/trunk/java/javax/annotation/security/DenyAll.java Sat Jul 10 21:43:02 2010 @@ -27,4 +27,5 @@ import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) public @interface DenyAll { + // No attributes } Modified: tomcat/trunk/java/javax/annotation/security/PermitAll.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/javax/annotation/security/PermitAll.java?rev=962923&r1=962922&r2=962923&view=diff ============================================================================== --- tomcat/trunk/java/javax/annotation/security/PermitAll.java (original) +++ tomcat/trunk/java/javax/annotation/security/PermitAll.java Sat Jul 10 21:43:02 2010 @@ -27,4 +27,5 @@ import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) public @interface PermitAll { + // No attributes } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org