diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-15 16:38:03 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-20 12:12:15 +0200 |
commit | c0415d5f1e96304b0d528de92b6ba0cdf31b503b (patch) | |
tree | 0aa3cf4fe10d6bf47c8419eb121f8b7357f30f9f /javaunohelper | |
parent | 6884ef6317ddc29a713a342fb102e28ebc8fa5cc (diff) |
java: remove unnecessary constructor declarations
in the absence of any other constructors, the compiler will automatically
generate a public no-arg constructor
Change-Id: I70eca507cd8e16e33580b3398d41d70690bc2909
Diffstat (limited to 'javaunohelper')
5 files changed, 0 insertions, 23 deletions
diff --git a/javaunohelper/com/sun/star/lib/uno/helper/MultiTypeInterfaceContainer.java b/javaunohelper/com/sun/star/lib/uno/helper/MultiTypeInterfaceContainer.java index 6ebc687bb4b8..2437f364bbb6 100644 --- a/javaunohelper/com/sun/star/lib/uno/helper/MultiTypeInterfaceContainer.java +++ b/javaunohelper/com/sun/star/lib/uno/helper/MultiTypeInterfaceContainer.java @@ -28,11 +28,6 @@ public class MultiTypeInterfaceContainer private Map<Object,InterfaceContainer> map= new HashMap<Object,InterfaceContainer>(); - /** Creates a new instance of MultiTypeInterfaceContainer */ - public MultiTypeInterfaceContainer() - { - } - /** only returns types which have at least one value in InterfaceContainer * return value can contain an element null, if someone called * addInterface (null, interf) diff --git a/javaunohelper/com/sun/star/lib/uno/helper/PropertySetMixin.java b/javaunohelper/com/sun/star/lib/uno/helper/PropertySetMixin.java index e66167fda900..067033a7a048 100644 --- a/javaunohelper/com/sun/star/lib/uno/helper/PropertySetMixin.java +++ b/javaunohelper/com/sun/star/lib/uno/helper/PropertySetMixin.java @@ -525,10 +525,6 @@ public final class PropertySetMixin { @see #prepareSet(String, Object, Object, PropertySetMixin.BoundListeners) */ public static final class BoundListeners { - /** - The constructor. - */ - public BoundListeners() {} /** Notifies any 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 8653af4e03be..6893bd19e57f 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 @@ -37,11 +37,6 @@ import com.sun.star.beans.XPropertiesChangeListener; public class PropertySet_Test { - /** Creates a new instance of PropertySet_Test */ - public PropertySet_Test() - { - } - public boolean convertPropertyValue() { System.out.println("PropertySet.convertPropertyValue"); 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 f5b5872d0c65..9a67b2049f5c 100644 --- a/javaunohelper/test/com/sun/star/lib/uno/helper/ProxyProvider.java +++ b/javaunohelper/test/com/sun/star/lib/uno/helper/ProxyProvider.java @@ -29,10 +29,6 @@ public class ProxyProvider { static java_environment env= new java_environment(null); - /** Creates a new instance of ProxyProvider */ - public ProxyProvider() - { - } /** returns Holder proxy objects for the specified interface. If the method is called * several times with the same arguments then each time a new HolderProxy is returned. * Then all HolderProxy s refer to the same Proxy object. diff --git a/javaunohelper/test/com/sun/star/lib/uno/helper/WeakBase_Test.java b/javaunohelper/test/com/sun/star/lib/uno/helper/WeakBase_Test.java index 81806f6b94ac..3d36c763b10a 100644 --- a/javaunohelper/test/com/sun/star/lib/uno/helper/WeakBase_Test.java +++ b/javaunohelper/test/com/sun/star/lib/uno/helper/WeakBase_Test.java @@ -27,11 +27,6 @@ import com.sun.star.uno.XAdapter; public class WeakBase_Test { - /** Creates a new instance of WeakBase_Test */ - public WeakBase_Test() - { - } - public boolean getTypes() { System.out.println("Testing WeakBase.getTypes"); |