summaryrefslogtreecommitdiffstats
path: root/framework
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 /framework
parent'>>' should be '> >' within a nested template argument list (diff)
downloadcore-14d1a11ec4a7ed0deeac522403248536e8d23f57.tar.gz
core-14d1a11ec4a7ed0deeac522403248536e8d23f57.zip
java: reduce scope, make constructors private
found by UCDetector Change-Id: If05277fd2fe77ceabb4c7c87aeb8569e3406102d
Diffstat (limited to 'framework')
-rw-r--r--framework/qa/complex/framework/autosave/AutoSave.java2
-rw-r--r--framework/qa/complex/framework/autosave/Protocol.java2
-rw-r--r--framework/qa/complex/imageManager/_XComponent.java2
3 files changed, 3 insertions, 3 deletions
diff --git a/framework/qa/complex/framework/autosave/AutoSave.java b/framework/qa/complex/framework/autosave/AutoSave.java
index 4ca6eda2a26b..d82f97363125 100644
--- a/framework/qa/complex/framework/autosave/AutoSave.java
+++ b/framework/qa/complex/framework/autosave/AutoSave.java
@@ -68,7 +68,7 @@ public class AutoSave
private URL m_aRegistration;
private Protocol m_aLog;
- public AutoSaveListener(XMultiServiceFactory xSMGR ,
+ private AutoSaveListener(XMultiServiceFactory xSMGR ,
XDispatch xAutoSave,
Protocol aLog )
{
diff --git a/framework/qa/complex/framework/autosave/Protocol.java b/framework/qa/complex/framework/autosave/Protocol.java
index bcf3d40a0544..c985a951c1b2 100644
--- a/framework/qa/complex/framework/autosave/Protocol.java
+++ b/framework/qa/complex/framework/autosave/Protocol.java
@@ -170,7 +170,7 @@ public class Protocol extends JComponent
private Timestamp m_aStamp;
/** ctor for fast initializing of such line */
- public ProtocolLine( long nLine ,
+ private ProtocolLine( long nLine ,
long nScope ,
int nType ,
String sMessage )
diff --git a/framework/qa/complex/imageManager/_XComponent.java b/framework/qa/complex/imageManager/_XComponent.java
index 3f1445e72b44..e1051d28ab56 100644
--- a/framework/qa/complex/imageManager/_XComponent.java
+++ b/framework/qa/complex/imageManager/_XComponent.java
@@ -51,7 +51,7 @@ public class _XComponent {
public class MyEventListener implements XEventListener {
int number = 0;
String message = null;
- public MyEventListener(int number, String message) {
+ private MyEventListener(int number, String message) {
this.message = message;
this.number = number;
}