diff options
author | Noel Grandin <noel@peralex.com> | 2014-10-15 14:26:02 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-16 08:15:47 +0200 |
commit | fa652cdd2314f485359119a8ff081a7afd1c01b0 (patch) | |
tree | 4456e10a996e3a85642df37bc473ba5c13b4094b /wizards | |
parent | 48633151ff104e867bae6fcd403a2c8d4a87b509 (diff) |
java: no need to explicitly code default constructors
the compiler will do it automatically
Change-Id: I6ee57c3500a4c1c1b96919a69b569686e6c0ead9
Diffstat (limited to 'wizards')
6 files changed, 0 insertions, 27 deletions
diff --git a/wizards/com/sun/star/wizards/common/Desktop.java b/wizards/com/sun/star/wizards/common/Desktop.java index a40ed764e71a..665b23ec3823 100644 --- a/wizards/com/sun/star/wizards/common/Desktop.java +++ b/wizards/com/sun/star/wizards/common/Desktop.java @@ -45,11 +45,6 @@ import com.sun.star.i18n.XCharacterClassification; public class Desktop { - /** Creates a new instance of Desktop */ - public Desktop() - { - } - public static XDesktop getDesktop(XMultiServiceFactory xMSF) { com.sun.star.uno.XInterface xInterface = null; diff --git a/wizards/com/sun/star/wizards/common/Helper.java b/wizards/com/sun/star/wizards/common/Helper.java index 798378e7e359..9b62dd081b26 100644 --- a/wizards/com/sun/star/wizards/common/Helper.java +++ b/wizards/com/sun/star/wizards/common/Helper.java @@ -36,11 +36,6 @@ import com.sun.star.util.XNumberFormatter; public class Helper { - /** Creates a new instance of Helper */ - public Helper() - { - } - public static long convertUnoDatetoInteger(com.sun.star.util.Date DateValue) { java.util.Calendar oCal = java.util.Calendar.getInstance(); diff --git a/wizards/com/sun/star/wizards/common/JavaTools.java b/wizards/com/sun/star/wizards/common/JavaTools.java index 0a48d74315a1..cca608ab7808 100644 --- a/wizards/com/sun/star/wizards/common/JavaTools.java +++ b/wizards/com/sun/star/wizards/common/JavaTools.java @@ -29,11 +29,6 @@ import java.net.URL; public class JavaTools { - /** Creates a new instance of JavaTools */ - public JavaTools() - { - } - public static String[] copyStringArray(String[] FirstArray) { if (FirstArray != null) diff --git a/wizards/com/sun/star/wizards/ui/ImageList.java b/wizards/com/sun/star/wizards/ui/ImageList.java index 050653bb1989..def1e0bee8ef 100644 --- a/wizards/com/sun/star/wizards/ui/ImageList.java +++ b/wizards/com/sun/star/wizards/ui/ImageList.java @@ -102,8 +102,6 @@ public class ImageList implements XItemEventBroadcaster, ListDataListener class OMouseListener implements XMouseListener { - public OMouseListener() - {} public void mousePressed(MouseEvent arg0) { focus(getImageIndexFor(getSelected())); diff --git a/wizards/com/sun/star/wizards/ui/event/AbstractListener.java b/wizards/com/sun/star/wizards/ui/event/AbstractListener.java index bfe2c417d1fe..cfbd831c6d1c 100644 --- a/wizards/com/sun/star/wizards/ui/event/AbstractListener.java +++ b/wizards/com/sun/star/wizards/ui/event/AbstractListener.java @@ -43,11 +43,6 @@ public class AbstractListener private HashMap<String,MethodInvocation> mHashtable = new HashMap<String,MethodInvocation>(); - /** Creates a new instance of AbstractListener */ - public AbstractListener() - { - } - public void add(String componentName, String eventName, String methodName, Object target) { try diff --git a/wizards/com/sun/star/wizards/ui/event/CommonListener.java b/wizards/com/sun/star/wizards/ui/event/CommonListener.java index d0387f7533a6..8b455b517d44 100644 --- a/wizards/com/sun/star/wizards/ui/event/CommonListener.java +++ b/wizards/com/sun/star/wizards/ui/event/CommonListener.java @@ -23,11 +23,6 @@ import com.sun.star.lang.EventObject; public class CommonListener extends AbstractListener implements XActionListener, XItemListener, XTextListener, EventNames, XWindowListener, XMouseListener, XFocusListener, XKeyListener { - /** Creates a new instance of CommonListener */ - public CommonListener() - { - } - /** * Implementation of com.sun.star.awt.XActionListener */ |