summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/sheet/_XDataPilotTable2.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/sheet/_XDataPilotTable2.java')
-rw-r--r--qadevOOo/tests/java/ifc/sheet/_XDataPilotTable2.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qadevOOo/tests/java/ifc/sheet/_XDataPilotTable2.java b/qadevOOo/tests/java/ifc/sheet/_XDataPilotTable2.java
index da56fbb3071c..d7c513c99088 100644
--- a/qadevOOo/tests/java/ifc/sheet/_XDataPilotTable2.java
+++ b/qadevOOo/tests/java/ifc/sheet/_XDataPilotTable2.java
@@ -280,7 +280,7 @@ public class _XDataPilotTable2 extends MultiMethodTest
// out-of-bound condition is undefined.
try
{
- CellRangeAddress rangeOutOfBound = xDPTab2.getOutputRangeByType(-1);
+ xDPTab2.getOutputRangeByType(-1);
log.println("exception not raised");
break;
}
@@ -291,7 +291,7 @@ public class _XDataPilotTable2 extends MultiMethodTest
try
{
- CellRangeAddress rangeOutOfBound = xDPTab2.getOutputRangeByType(100);
+ xDPTab2.getOutputRangeByType(100);
log.println("exception not raised");
break;
}