summaryrefslogtreecommitdiff
path: root/wizards/com
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-01 20:24:23 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-01 20:25:59 +0000
commitae7aaf16abdbba6f84e00ef73862e819b11c82eb (patch)
tree1f4b7540f6591f07d690dfd666a4bf2ae50f4355 /wizards/com
parent5f757b7b372597d3f632b97b16d4aef6fe08ae1a (diff)
StringList isn't required or used by wizards
as shown by commit a96c308e52983b7bc0275e31e50a9b04e5805852 Author: Noel Grandin <noel@peralex.com> Date: Wed Dec 17 10:33:26 2014 +0200 java: these fields can be converted to local variables Change-Id: Ifefb5de196a3e5cbaa8945759da42886c69daacf Change-Id: I4da6c42e0114a891a6b6af8889c94b4332b0b40b
Diffstat (limited to 'wizards/com')
-rw-r--r--wizards/com/sun/star/wizards/common/Resource.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/wizards/com/sun/star/wizards/common/Resource.java b/wizards/com/sun/star/wizards/common/Resource.java
index 1715fb238ff8..7158bad13f4b 100644
--- a/wizards/com/sun/star/wizards/common/Resource.java
+++ b/wizards/com/sun/star/wizards/common/Resource.java
@@ -49,11 +49,6 @@ public class Resource
this.xStringIndexAccess = UnoRuntime.queryInterface(
XIndexAccess.class,
xNameAccess.getByName("String"));
- XIndexAccess xStringListIndexAccess = UnoRuntime.queryInterface(
- XIndexAccess.class,
- xNameAccess.getByName("StringList"));
- if(xStringListIndexAccess == null)
- throw new Exception("could not initialize xStringListIndexAccess");
if(this.xStringIndexAccess == null)
throw new Exception("could not initialize xStringIndexAccess");
}