summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-08 12:44:57 +0200
committerNoel Grandin <noel@peralex.com>2014-08-13 08:49:23 +0200
commit68cd011c907d00493bf2bfde531c1e244819596b (patch)
tree0225318c908b00faaa701a19aaf7aa567c3582a0 /sc
parent70f56bc22fe952c75ec714e05e1bb5296491a36a (diff)
java: reduce scope, make some methods private
found by UCDetector Change-Id: Ib1425edde146193a65c242dc159b7e3fbf0e4a2e
Diffstat (limited to 'sc')
-rw-r--r--sc/qa/complex/dataPilot/_XPropertySet.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/qa/complex/dataPilot/_XPropertySet.java b/sc/qa/complex/dataPilot/_XPropertySet.java
index 9fd8f3b8bf80..8ccad66268a1 100644
--- a/sc/qa/complex/dataPilot/_XPropertySet.java
+++ b/sc/qa/complex/dataPilot/_XPropertySet.java
@@ -549,7 +549,7 @@ public class _XPropertySet {
* Retrieves one random property name from list (property names separated
* by ';') of property names.
*/
- public String getRandomString(String str) {
+ private String getRandomString(String str) {
String gRS = "none";
Random rnd = new Random();
@@ -564,7 +564,7 @@ public class _XPropertySet {
}
- public boolean isChangeable(String name) {
+ private boolean isChangeable(String name) {
boolean hasChanged = false;
try {
Object getProp = oObj.getPropertyValue(name);