summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-07 17:04:21 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-07 18:07:48 +0100
commit87d5f408180c0292fbf71ed71f564473beffe29a (patch)
treee4dae6bedd13634136454d22391f9e6724f8a11f /framework
parent7b7e3e48b88f168a5e16f645ca603df23a066b60 (diff)
Remove unused methods
Change-Id: Ib1fb65981151ef1c0c1cd316790e9906d1072dfc
Diffstat (limited to 'framework')
-rw-r--r--framework/qa/complex/framework/autosave/ConfigHelper.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/framework/qa/complex/framework/autosave/ConfigHelper.java b/framework/qa/complex/framework/autosave/ConfigHelper.java
index 701b4bf5c085..8de6e87505ff 100644
--- a/framework/qa/complex/framework/autosave/ConfigHelper.java
+++ b/framework/qa/complex/framework/autosave/ConfigHelper.java
@@ -106,28 +106,4 @@ class ConfigHelper
catch(com.sun.star.uno.Exception ex)
{}
}
-
- //-----------------------------------------------
- public static Object readDirectKey(XMultiServiceFactory xSMGR ,
- String sConfigFile,
- String sRelPath ,
- String sKey )
- throws com.sun.star.uno.Exception
- {
- ConfigHelper aConfig = new ConfigHelper(xSMGR, sConfigFile, true);
- return aConfig.readRelativeKey(sRelPath, sKey);
- }
-
- //-----------------------------------------------
- public static void writeDirectKey(XMultiServiceFactory xSMGR ,
- String sConfigFile,
- String sRelPath ,
- String sKey ,
- Object aValue )
- throws com.sun.star.uno.Exception
- {
- ConfigHelper aConfig = new ConfigHelper(xSMGR, sConfigFile, false);
- aConfig.writeRelativeKey(sRelPath, sKey, aValue);
- aConfig.flush();
- }
}