summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/common/Properties.java
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/common/Properties.java')
-rw-r--r--wizards/com/sun/star/wizards/common/Properties.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/common/Properties.java b/wizards/com/sun/star/wizards/common/Properties.java
index 4c4a69df044e..ee098842e2ac 100644
--- a/wizards/com/sun/star/wizards/common/Properties.java
+++ b/wizards/com/sun/star/wizards/common/Properties.java
@@ -64,7 +64,7 @@ public class Properties extends HashMap<String,Object>
return getProperties(this);
}
- public static PropertyValue[] getProperties(Map<String,Object> map)
+ private static PropertyValue[] getProperties(Map<String,Object> map)
{
PropertyValue[] pv = new PropertyValue[map.size()];
@@ -76,7 +76,7 @@ public class Properties extends HashMap<String,Object>
return pv;
}
- public static PropertyValue createProperty(String name, Map<String,Object> map)
+ private static PropertyValue createProperty(String name, Map<String,Object> map)
{
return createProperty(name, map.get(name));
}