summaryrefslogtreecommitdiff
path: root/dbaccess/qa
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-13 09:32:50 +0200
committerNoel Grandin <noel@peralex.com>2014-08-20 10:35:53 +0200
commit2922a967a1da5f9c0a07b5390906307d0ae6fe48 (patch)
treebc8d0a6f25e5d058adecb016f619096d64c4a484 /dbaccess/qa
parent188af1e56e3280ea4446e694cfc5c2b4abbe8c3b (diff)
java: Avoid naming non-fields with the prefix m_
found by PMD Change-Id: I5955cfc9c4d777496a2e8e4b2c422a51764a8bc1
Diffstat (limited to 'dbaccess/qa')
-rw-r--r--dbaccess/qa/complex/dbaccess/RowSet.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/qa/complex/dbaccess/RowSet.java b/dbaccess/qa/complex/dbaccess/RowSet.java
index 683902279349..c9bb39aa0a38 100644
--- a/dbaccess/qa/complex/dbaccess/RowSet.java
+++ b/dbaccess/qa/complex/dbaccess/RowSet.java
@@ -243,10 +243,10 @@ public class RowSet extends TestCase
}
- void testPosition(XResultSet m_resultSet, XRow m_row, int expectedValue, String location) throws SQLException
+ void testPosition(XResultSet resultSet, XRow row, int expectedValue, String location) throws SQLException
{
- final int val = m_row.getInt(1);
- final int pos = m_resultSet.getRow();
+ final int val = row.getInt(1);
+ final int pos = resultSet.getRow();
assertTrue(location + ": value/position do not match: " + pos + " (pos) != " + val + " (val)", val == pos);
assertTrue(location + ": value/position are not as expected: " + val + " (val) != " + expectedValue + " (expected)", val == expectedValue);
}