summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-16 14:27:48 +0200
committerNoel Grandin <noel@peralex.com>2015-10-16 14:40:03 +0200
commit810407b04346a6e853983e45b7c80a5157115623 (patch)
tree05a5578c4be66baf12001e7ba75c90a664421298 /qadevOOo
parenta8248293c301e6804dfbe195c9a9be39e4328480 (diff)
cid#1327102 UrF: Unread field
Change-Id: I28b0c6315c8526c80eeede179dd71e37be3272ef
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/tests/java/ifc/sheet/_XSheetAuditing.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/qadevOOo/tests/java/ifc/sheet/_XSheetAuditing.java b/qadevOOo/tests/java/ifc/sheet/_XSheetAuditing.java
index 88aa783647b0..49665104abd2 100644
--- a/qadevOOo/tests/java/ifc/sheet/_XSheetAuditing.java
+++ b/qadevOOo/tests/java/ifc/sheet/_XSheetAuditing.java
@@ -42,7 +42,6 @@ public class _XSheetAuditing extends MultiMethodTest {
CellAddress dependentAddress = null;
XCell xAddress = null;
XCell xPrecedentAddress = null;
- XCell xDependentAddress = null;
XDrawPage xDrawPage = null;
int elementCount = 0;
@@ -76,7 +75,7 @@ public class _XSheetAuditing extends MultiMethodTest {
throw new StatusException(Status.failed("'XSheetAuditing.Spreadsheet' object relation not found."));
try {
xAddress = xSheet.getCellByPosition(address.Column, address.Row);
- xDependentAddress = xSheet.getCellByPosition(dependentAddress.Column, dependentAddress.Row);
+ xSheet.getCellByPosition(dependentAddress.Column, dependentAddress.Row);
xPrecedentAddress = xSheet.getCellByPosition(precedentAddress.Column, precedentAddress.Row);
}
catch(com.sun.star.lang.IndexOutOfBoundsException e) {