diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-19 16:03:41 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-01-05 08:23:29 +0200 |
commit | 43cc8ad33e815522e2b23ac87a4a9c4526cd85c9 (patch) | |
tree | b042266508f8b084bc7bbe9cc57250a971311099 /javaunohelper | |
parent | cfcbe2e44e33f4a60e70006ff5e1cbb9aa2adceb (diff) |
java: remove dead code
found by UCDetector
Change-Id: I6b0f49529379072da566e927b86815f173e7a90b
Diffstat (limited to 'javaunohelper')
3 files changed, 0 insertions, 8 deletions
diff --git a/javaunohelper/test/com/sun/star/lib/uno/helper/AWeakBase.java b/javaunohelper/test/com/sun/star/lib/uno/helper/AWeakBase.java index 1217b0274a9a..6f8d415e0337 100644 --- a/javaunohelper/test/com/sun/star/lib/uno/helper/AWeakBase.java +++ b/javaunohelper/test/com/sun/star/lib/uno/helper/AWeakBase.java @@ -24,9 +24,6 @@ public class AWeakBase extends WeakBase implements XEventListener { public int nDisposingCalled= 0; - public AWeakBase(int i) - { - } public AWeakBase() { } diff --git a/javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java b/javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java index 1e1359c919cf..41149ba61a18 100644 --- a/javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java +++ b/javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java @@ -1624,7 +1624,6 @@ XPropertiesChangeListener int nChangeCalled; int nPropertiesChange; int nVetoCalled; - private int nDisposingCalled; boolean bVeto= false; PropertyChangeEvent evt; PropertyChangeEvent[] arEvt; @@ -1646,7 +1645,6 @@ XPropertiesChangeListener public void disposing( /*IN*/EventObject Source ) { - nDisposingCalled++; } public void reset() @@ -1654,7 +1652,6 @@ XPropertiesChangeListener nChangeCalled= 0; nPropertiesChange= 0; nVetoCalled= 0; - nDisposingCalled= 0; evt= null; arEvt= null; bVeto= false; diff --git a/javaunohelper/test/com/sun/star/lib/uno/helper/ProxyProvider.java b/javaunohelper/test/com/sun/star/lib/uno/helper/ProxyProvider.java index cfce044c5f06..c021d52defaa 100644 --- a/javaunohelper/test/com/sun/star/lib/uno/helper/ProxyProvider.java +++ b/javaunohelper/test/com/sun/star/lib/uno/helper/ProxyProvider.java @@ -62,10 +62,8 @@ public class ProxyProvider class Proxy implements IQueryInterface, XEventListener { private String oid; - Type type; Proxy(String oid, Type t) { this.oid = oid; - this.type = t; } public String getOid() { |