From c0415d5f1e96304b0d528de92b6ba0cdf31b503b Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 15 Aug 2014 16:38:03 +0200 Subject: 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 --- javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java | 5 ----- javaunohelper/test/com/sun/star/lib/uno/helper/ProxyProvider.java | 4 ---- javaunohelper/test/com/sun/star/lib/uno/helper/WeakBase_Test.java | 5 ----- 3 files changed, 14 deletions(-) (limited to 'javaunohelper/test') 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"); -- cgit