diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/complex/dataPilot/_XPropertySet.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/qa/complex/dataPilot/_XPropertySet.java b/sc/qa/complex/dataPilot/_XPropertySet.java index 7573ffcb1b6f..70875a950314 100644 --- a/sc/qa/complex/dataPilot/_XPropertySet.java +++ b/sc/qa/complex/dataPilot/_XPropertySet.java @@ -116,9 +116,9 @@ public class _XPropertySet { * Structure that collects three properties of each type to test : * Constrained, Bound and Normal. */ - public class PropsToTest { - String constrained = null; - String bound = null; + private class PropsToTest { + private String constrained = null; + private String bound = null; String normal = null; } @@ -474,7 +474,7 @@ public class _XPropertySet { * Gets the properties being tested. Searches and stores by one * property of each kind (Bound, Vetoable, Normal). */ - public PropsToTest getPropsToTest(XPropertySetInfo xPSI) { + private PropsToTest getPropsToTest(XPropertySetInfo xPSI) { Property[] properties = xPSI.getProperties(); String bound = ""; |