summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-04 16:27:56 +0200
committerNoel Grandin <noel@peralex.com>2014-08-05 11:31:50 +0200
commitd26540bb05b0443e7988da34372c86f88cbf1f6c (patch)
tree3f24ac9aa08992ff1e90211b8681711ad92937d4 /ucb
parentf124688cfdfbe96ff2be5ab44ea5023725548146 (diff)
java: remove unused fields
Change-Id: I6c93864f501f646a8940eac221a88c87b3f75525
Diffstat (limited to 'ucb')
-rw-r--r--ucb/qa/complex/tdoc/_XCommandInfoChangeNotifier.java4
-rw-r--r--ucb/qa/complex/tdoc/_XComponent.java2
-rw-r--r--ucb/qa/complex/tdoc/_XPropertiesChangeNotifier.java4
-rw-r--r--ucb/qa/complex/tdoc/_XPropertySetInfoChangeNotifier.java3
-rw-r--r--ucb/test/com/sun/star/comp/ucb/GlobalTransfer_Test.java4
5 files changed, 0 insertions, 17 deletions
diff --git a/ucb/qa/complex/tdoc/_XCommandInfoChangeNotifier.java b/ucb/qa/complex/tdoc/_XCommandInfoChangeNotifier.java
index d5cac78161a4..b69066403768 100644
--- a/ucb/qa/complex/tdoc/_XCommandInfoChangeNotifier.java
+++ b/ucb/qa/complex/tdoc/_XCommandInfoChangeNotifier.java
@@ -40,15 +40,11 @@ public class _XCommandInfoChangeNotifier {
}
private class CommandInfoChangeListener implements XCommandInfoChangeListener {
- boolean disposing = false;
- boolean infoChanged = false;
public void commandInfoChange(com.sun.star.ucb.CommandInfoChangeEvent commandInfoChangeEvent) {
- infoChanged = true;
}
public void disposing(com.sun.star.lang.EventObject eventObject) {
- disposing = true;
}
}
diff --git a/ucb/qa/complex/tdoc/_XComponent.java b/ucb/qa/complex/tdoc/_XComponent.java
index ad1cde8a087a..5f617008485e 100644
--- a/ucb/qa/complex/tdoc/_XComponent.java
+++ b/ucb/qa/complex/tdoc/_XComponent.java
@@ -39,8 +39,6 @@ import share.LogWriter;
public class _XComponent {
public static XComponent oObj = null;
- private XNameContainer xContainer = null;
- private XComponent altDispose = null;
public LogWriter log = null;
boolean listenerDisposed[] = new boolean[2];
diff --git a/ucb/qa/complex/tdoc/_XPropertiesChangeNotifier.java b/ucb/qa/complex/tdoc/_XPropertiesChangeNotifier.java
index 4116721801f7..5c9dedb354de 100644
--- a/ucb/qa/complex/tdoc/_XPropertiesChangeNotifier.java
+++ b/ucb/qa/complex/tdoc/_XPropertiesChangeNotifier.java
@@ -43,15 +43,11 @@ public class _XPropertiesChangeNotifier {
}
private class PropertiesChangeListener implements XPropertiesChangeListener {
- public boolean disposed = false;
- public boolean propChanged = false;
public void disposing(com.sun.star.lang.EventObject eventObject) {
- disposed = true;
}
public void propertiesChange(com.sun.star.beans.PropertyChangeEvent[] propertyChangeEvent) {
- propChanged = true;
}
}
diff --git a/ucb/qa/complex/tdoc/_XPropertySetInfoChangeNotifier.java b/ucb/qa/complex/tdoc/_XPropertySetInfoChangeNotifier.java
index e8b54130ef16..0b669f7eb21c 100644
--- a/ucb/qa/complex/tdoc/_XPropertySetInfoChangeNotifier.java
+++ b/ucb/qa/complex/tdoc/_XPropertySetInfoChangeNotifier.java
@@ -43,11 +43,8 @@ public class _XPropertySetInfoChangeNotifier {
}
private class PropertySetInfoChangeListener implements XPropertySetInfoChangeListener {
- public boolean disposed = false;
- public boolean propChanged = false;
public void disposing(com.sun.star.lang.EventObject eventObject) {
- disposed = true;
}
public void propertySetInfoChange(com.sun.star.beans.PropertySetInfoChangeEvent propertySetInfoChangeEvent) {
diff --git a/ucb/test/com/sun/star/comp/ucb/GlobalTransfer_Test.java b/ucb/test/com/sun/star/comp/ucb/GlobalTransfer_Test.java
index b353fbd1225e..6258301f35c5 100644
--- a/ucb/test/com/sun/star/comp/ucb/GlobalTransfer_Test.java
+++ b/ucb/test/com/sun/star/comp/ucb/GlobalTransfer_Test.java
@@ -43,10 +43,6 @@ public final class GlobalTransfer_Test extends ComplexTestCase {
= "testcase-do-not-remove.sxw";
static private final String httpSourceDir
= "http://so-berlin/~webdav/";
- static private final String httpTargetDir
- = "http://so-berlin/~webdav/";
- static private final String fileSourceDir
- = "file:///d:/temp/source/";
static private final String fileTargetDir
= "file:///d:/temp/";