summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/helper/ConfigHelper.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/helper/ConfigHelper.java')
-rw-r--r--qadevOOo/runner/helper/ConfigHelper.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/qadevOOo/runner/helper/ConfigHelper.java b/qadevOOo/runner/helper/ConfigHelper.java
index f6029bc0e8a0..da873a59b97c 100644
--- a/qadevOOo/runner/helper/ConfigHelper.java
+++ b/qadevOOo/runner/helper/ConfigHelper.java
@@ -125,43 +125,6 @@ public class ConfigHelper
}
- private Object readRelativeKey(String sRelPath,
- String sKey )
- throws com.sun.star.container.NoSuchElementException
- {
- try
- {
- XPropertySet xPath = UnoRuntime.queryInterface(
- XPropertySet.class,
- m_xConfig.getByHierarchicalName(sRelPath));
- return xPath.getPropertyValue(sKey);
- }
- catch(com.sun.star.uno.Exception ex)
- {
- throw new com.sun.star.container.NoSuchElementException(ex.getMessage());
- }
- }
-
-
- private void writeRelativeKey(String sRelPath,
- String sKey ,
- Object aValue )
- throws com.sun.star.container.NoSuchElementException
- {
- try
- {
- XPropertySet xPath = UnoRuntime.queryInterface(
- XPropertySet.class,
- m_xConfig.getByHierarchicalName(sRelPath));
- xPath.setPropertyValue(sKey, aValue);
- }
- catch(com.sun.star.uno.Exception ex)
- {
- throw new com.sun.star.container.NoSuchElementException(ex.getMessage());
- }
- }
-
-
/**
* Updates the configuration.<p>
* This must be called after you have changed the configuration