diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-12 16:27:18 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-13 08:49:24 +0200 |
commit | 8583da1e934a49791ef8d86668f3d5c3c5dae1d7 (patch) | |
tree | f092f708b7bb9a0a23ae82c1dc499a6e3fde4518 /ucb | |
parent | 68cd011c907d00493bf2bfde531c1e244819596b (diff) |
java: remove unused fields
found by UCDetector
Change-Id: I4a7c56a9918054c23469de5680658e7b501f0165
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/qa/complex/tdoc/_XCommandInfoChangeNotifier.java | 2 | ||||
-rw-r--r-- | ucb/qa/complex/tdoc/_XPropertiesChangeNotifier.java | 2 | ||||
-rw-r--r-- | ucb/qa/complex/tdoc/_XPropertySetInfoChangeNotifier.java | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/ucb/qa/complex/tdoc/_XCommandInfoChangeNotifier.java b/ucb/qa/complex/tdoc/_XCommandInfoChangeNotifier.java index b69066403768..d5b30f17dbb2 100644 --- a/ucb/qa/complex/tdoc/_XCommandInfoChangeNotifier.java +++ b/ucb/qa/complex/tdoc/_XCommandInfoChangeNotifier.java @@ -26,7 +26,7 @@ import share.LogWriter; */ public class _XCommandInfoChangeNotifier { public XCommandInfoChangeNotifier oObj = null; - public LogWriter log = null; + private CommandInfoChangeListener listener = new CommandInfoChangeListener(); public boolean _addCommandInfoChangeListener() { diff --git a/ucb/qa/complex/tdoc/_XPropertiesChangeNotifier.java b/ucb/qa/complex/tdoc/_XPropertiesChangeNotifier.java index 4f945d09f94e..8cee835cc5b4 100644 --- a/ucb/qa/complex/tdoc/_XPropertiesChangeNotifier.java +++ b/ucb/qa/complex/tdoc/_XPropertiesChangeNotifier.java @@ -26,7 +26,7 @@ import share.LogWriter; */ public class _XPropertiesChangeNotifier { public XPropertiesChangeNotifier oObj = null; - public LogWriter log = null; + private PropertiesChangeListener listener = new PropertiesChangeListener(); private String[] args = null; diff --git a/ucb/qa/complex/tdoc/_XPropertySetInfoChangeNotifier.java b/ucb/qa/complex/tdoc/_XPropertySetInfoChangeNotifier.java index 0505c6796108..f514dd8ec31c 100644 --- a/ucb/qa/complex/tdoc/_XPropertySetInfoChangeNotifier.java +++ b/ucb/qa/complex/tdoc/_XPropertySetInfoChangeNotifier.java @@ -26,10 +26,10 @@ import share.LogWriter; */ public class _XPropertySetInfoChangeNotifier { public XPropertySetInfoChangeNotifier oObj = null; - public LogWriter log = null; + private PropertySetInfoChangeListener listener = new PropertySetInfoChangeListener(); - String[] args = null; + public boolean _addPropertiesChangeListener() { |