summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/sdbc/_XResultSet.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/sdbc/_XResultSet.java')
-rw-r--r--qadevOOo/tests/java/ifc/sdbc/_XResultSet.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/tests/java/ifc/sdbc/_XResultSet.java b/qadevOOo/tests/java/ifc/sdbc/_XResultSet.java
index c405a96fa13f..279efc3e98bc 100644
--- a/qadevOOo/tests/java/ifc/sdbc/_XResultSet.java
+++ b/qadevOOo/tests/java/ifc/sdbc/_XResultSet.java
@@ -418,7 +418,7 @@ public class _XResultSet extends MultiMethodTest {
public void _rowUpdated() {
try {
- boolean res = oObj.rowUpdated() ;
+ oObj.rowUpdated();
tRes.tested("rowUpdated()", true) ;
} catch (SQLException e) {
log.println("Exception occurred :") ;
@@ -433,7 +433,7 @@ public class _XResultSet extends MultiMethodTest {
*/
public void _rowInserted() {
try {
- boolean res = oObj.rowInserted() ;
+ oObj.rowInserted();
tRes.tested("rowInserted()", true) ;
} catch (SQLException e) {
log.println("Exception occurred :") ;
@@ -448,7 +448,7 @@ public class _XResultSet extends MultiMethodTest {
*/
public void _rowDeleted() {
try {
- boolean res = oObj.rowDeleted() ;
+ oObj.rowDeleted();
tRes.tested("rowDeleted()", true) ;
} catch (SQLException e) {
log.println("Exception occurred :") ;