diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-06 08:38:10 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-11 12:33:02 +0200 |
commit | d5a31b221510a506a9c43d2c9f44c55405ce13fd (patch) | |
tree | 16c4444d46fb439a1601d2d4535e1770da318e05 /forms/qa | |
parent | 41709cc2688738f091a4b17839fe853caa5a0bfd (diff) |
java: remove unused parameters
Change-Id: Ifc44c51ddbd21fabaad686bc3d38e2dab54d97aa
Diffstat (limited to 'forms/qa')
-rw-r--r-- | forms/qa/integration/forms/ListBox.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/forms/qa/integration/forms/ListBox.java b/forms/qa/integration/forms/ListBox.java index b46f4a3f62e0..aff906105cd8 100644 --- a/forms/qa/integration/forms/ListBox.java +++ b/forms/qa/integration/forms/ListBox.java @@ -139,7 +139,7 @@ public class ListBox extends TestCase } /* ------------------------------------------------------------------ */ - private String[] impl_getTypedValue( final String _asType, final int _rowNum ) + private String[] impl_getTypedValue( final String _asType ) { Map< String, String[] > valueMap = new HashMap< String, String[] >(); valueMap.put( "bigint", new String[] { "1111111111", "222222222" } ); @@ -207,7 +207,7 @@ public class ListBox extends TestCase XPreparedStatement statement = connection.prepareStatement( sql.toString() ); XParameters statementParameters = UnoRuntime.queryInterface( XParameters.class, statement ); - final String[] keyValues = impl_getTypedValue( keyTypes[i], 0 ); + final String[] keyValues = impl_getTypedValue( keyTypes[i] ); for ( int row=0; row<displayValues.length; ++row ) { |