Author: rhillegas
Date: Wed Dec 22 15:21:48 2010
New Revision: 1051947
URL: http://svn.apache.org/viewvc?rev=1051947&view=rev
Log:
DERBY-4869: Suppress compiler warning introduced by previous submission.
Modified:
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/ResultSetTest.java
Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/ResultSetTest.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/ResultSetTest.java?rev=1051947&r1=1051946&r2=1051947&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/ResultSetTest.java
(original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/ResultSetTest.java
Wed Dec 22 15:21:48 2010
@@ -2174,6 +2174,7 @@ public class ResultSetTest
vetWrappedString( wrapper, 18, "VARCHARCOL" );
vetWrappedBinary( wrapper, 19, "VARCHARFORBITDATACOL" );
}
+ @SuppressWarnings("unchecked")
private void vetWrappedNull( Wrapper41 wrapper ) throws Exception
{
try {
|