summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/helper/ConfigurationRead.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/helper/ConfigurationRead.java')
-rw-r--r--qadevOOo/runner/helper/ConfigurationRead.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/qadevOOo/runner/helper/ConfigurationRead.java b/qadevOOo/runner/helper/ConfigurationRead.java
index a3af03c81ee3..30c8ee2d0c4b 100644
--- a/qadevOOo/runner/helper/ConfigurationRead.java
+++ b/qadevOOo/runner/helper/ConfigurationRead.java
@@ -76,11 +76,8 @@ public class ConfigurationRead {
* @param name The hierarchical name of a subnode.
* @return True, if the node exists.
*/
- public boolean hasByHieracrhicalName(String name) throws NoSuchElementException,
- com.sun.star.lang.WrappedTargetException {
-
+ public boolean hasByHieracrhicalName(String name) {
return root.hasByHierarchicalName(name);
-
}
@@ -89,7 +86,6 @@ public class ConfigurationRead {
* @return All elements of the root node.
*/
public String[] getRootNodeNames() {
-
XNameAccess xName = UnoRuntime.queryInterface(XNameAccess.class, root);
String[]names = xName.getElementNames();
return names;