Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 14100 invoked from network); 21 Nov 2009 18:58:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 21 Nov 2009 18:58:58 -0000 Received: (qmail 33716 invoked by uid 500); 21 Nov 2009 18:58:57 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 33623 invoked by uid 500); 21 Nov 2009 18:58:57 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 33614 invoked by uid 99); 21 Nov 2009 18:58:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 21 Nov 2009 18:58:57 +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, 21 Nov 2009 18:58:55 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6BEF123888FD; Sat, 21 Nov 2009 18:58:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r882968 - in /commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/testbed: Parent.java StaticContainer.java Date: Sat, 21 Nov 2009 18:58:34 -0000 To: commits@commons.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091121185834.6BEF123888FD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebb Date: Sat Nov 21 18:58:33 2009 New Revision: 882968 URL: http://svn.apache.org/viewvc?rev=882968&view=rev Log: Suppress Eclipse warnings for deliberate behaviour Modified: commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/testbed/Parent.java commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/testbed/StaticContainer.java Modified: commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/testbed/Parent.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/testbed/Parent.java?rev=882968&r1=882967&r2=882968&view=diff ============================================================================== --- commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/testbed/Parent.java (original) +++ commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/testbed/Parent.java Sat Nov 21 18:58:33 2009 @@ -24,5 +24,6 @@ public String s = "s"; protected boolean b = false; int i = 0; + @SuppressWarnings("unused") private double d = 0.0; } \ No newline at end of file Modified: commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/testbed/StaticContainer.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/testbed/StaticContainer.java?rev=882968&r1=882967&r2=882968&view=diff ============================================================================== --- commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/testbed/StaticContainer.java (original) +++ commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/testbed/StaticContainer.java Sat Nov 21 18:58:33 2009 @@ -24,6 +24,7 @@ public static final Object IMMUTABLE_PUBLIC = "public"; protected static final Object IMMUTABLE_PROTECTED = "protected"; static final Object IMMUTABLE_PACKAGE = ""; + @SuppressWarnings("unused") private static final Object IMMUTABLE_PRIVATE = "private"; public static Object mutablePublic;