Kaydet (Commit) 87d5f408 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Remove unused methods

Change-Id: Ib1fb65981151ef1c0c1cd316790e9906d1072dfc
üst 7b7e3e48
...@@ -106,28 +106,4 @@ class ConfigHelper ...@@ -106,28 +106,4 @@ class ConfigHelper
catch(com.sun.star.uno.Exception ex) 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();
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment