summaryrefslogtreecommitdiffstats
path: root/qadevOOo/runner/util/RegistryTools.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/util/RegistryTools.java')
-rw-r--r--qadevOOo/runner/util/RegistryTools.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/runner/util/RegistryTools.java b/qadevOOo/runner/util/RegistryTools.java
index 686411495feb..ff33c8c1442e 100644
--- a/qadevOOo/runner/util/RegistryTools.java
+++ b/qadevOOo/runner/util/RegistryTools.java
@@ -71,7 +71,7 @@ public class RegistryTools {
* return <code>true</code> if key names, value types
* and values are equal, else returns <code>false</code>.
*/
- public static boolean compareKeys
+ private static boolean compareKeys
(XRegistryKey key1, XRegistryKey key2) {
if (key1 == null || key2 == null ||
@@ -152,7 +152,7 @@ public class RegistryTools {
* @param keyName Full key name.
* @return Short key name.
*/
- public static String getShortKeyName(String keyName) {
+ private static String getShortKeyName(String keyName) {
if (keyName == null) return null ;
int idx = keyName.lastIndexOf("/") ;
if (idx < 0) return keyName ;
@@ -166,7 +166,7 @@ public class RegistryTools {
* comparing from children of root keys.
* @return <code>true</code> if keys and their sub keys are equal.
*/
- protected static boolean compareKeyTrees
+ private static boolean compareKeyTrees
(XRegistryKey tree1, XRegistryKey tree2, boolean compareRoot) {
if (compareRoot && !compareKeys(tree1, tree2)) return false ;