summaryrefslogtreecommitdiff
path: root/scripting/java/org
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-08 11:15:15 +0200
committerNoel Grandin <noel@peralex.com>2014-08-13 08:49:22 +0200
commit14d1a11ec4a7ed0deeac522403248536e8d23f57 (patch)
tree6a976bf53992c68a46472199e5fb494339899ae6 /scripting/java/org
parentcd0bbdaf379d646c94e6771f3358d7e3a8f206ad (diff)
java: reduce scope, make constructors private
found by UCDetector Change-Id: If05277fd2fe77ceabb4c7c87aeb8569e3406102d
Diffstat (limited to 'scripting/java/org')
-rw-r--r--scripting/java/org/openoffice/idesupport/SVersionRCFile.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripting/java/org/openoffice/idesupport/SVersionRCFile.java b/scripting/java/org/openoffice/idesupport/SVersionRCFile.java
index 42cd8f0fa16b..01f2db7858fa 100644
--- a/scripting/java/org/openoffice/idesupport/SVersionRCFile.java
+++ b/scripting/java/org/openoffice/idesupport/SVersionRCFile.java
@@ -68,7 +68,7 @@ public class SVersionRCFile {
this(DEFAULT_NAME);
}
- public SVersionRCFile(String name) {
+ private SVersionRCFile(String name) {
sversionrc = new File(name);
versions = new ArrayList<OfficeInstallation>(5);
}