summaryrefslogtreecommitdiff
path: root/dbaccess/qa
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-01-30 07:27:03 +0000
committerRüdiger Timm <rt@openoffice.org>2008-01-30 07:27:03 +0000
commitf3ddd04819c5dfc55e16346090fcc977621ece52 (patch)
tree5fcfdd3a547774d909d21196f3ebabadb1c7d959 /dbaccess/qa
parent8981875f97f0227ee04812d3cb74db36b8eb7b2d (diff)
INTEGRATION: CWS dba24d (1.8.70); FILE MERGED
2007/11/21 07:47:26 fs 1.8.70.1: silence some NetBeans 6 warnings
Diffstat (limited to 'dbaccess/qa')
-rw-r--r--dbaccess/qa/complex/dbaccess/RowSet.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/qa/complex/dbaccess/RowSet.java b/dbaccess/qa/complex/dbaccess/RowSet.java
index 1ae79e58f922..be608bbfac41 100644
--- a/dbaccess/qa/complex/dbaccess/RowSet.java
+++ b/dbaccess/qa/complex/dbaccess/RowSet.java
@@ -4,9 +4,9 @@
*
* $RCSfile: RowSet.java,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: rt $ $Date: 2007-07-06 07:51:31 $
+ * last change: $Author: rt $ $Date: 2008-01-30 08:27:03 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -833,11 +833,11 @@ public class RowSet extends ComplexTestCase {
for ( int i=0; i<expected; ++i )
{
- XPropertySet param = (XPropertySet)UnoRuntime.queryInterface( XPropertySet.class,
+ XPropertySet parameter = (XPropertySet)UnoRuntime.queryInterface( XPropertySet.class,
params.getByIndex(i) );
String expectedName = _paramNames[i];
- String foundName = (String)param.getPropertyValue( "Name" );
+ String foundName = (String)parameter.getPropertyValue( "Name" );
assure( "wrong parameter name (expected: " + expectedName + ", found: " + foundName + ") in" + _context,
expectedName.equals( foundName ) );
}