You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2009/11/21 19:58:34 UTC

svn commit: r882968 - in /commons/proper/lang/trunk/src/test/org/apache/commons/lang/reflect/testbed: Parent.java StaticContainer.java

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;