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 /odk/examples/DevelopersGuide/FirstSteps | |
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 'odk/examples/DevelopersGuide/FirstSteps')
-rw-r--r-- | odk/examples/DevelopersGuide/FirstSteps/FirstLoadComponent.java | 4 | ||||
-rw-r--r-- | odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape.java | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/odk/examples/DevelopersGuide/FirstSteps/FirstLoadComponent.java b/odk/examples/DevelopersGuide/FirstSteps/FirstLoadComponent.java index c98124d6ca09..b7d7e97c9ac3 100644 --- a/odk/examples/DevelopersGuide/FirstSteps/FirstLoadComponent.java +++ b/odk/examples/DevelopersGuide/FirstSteps/FirstLoadComponent.java @@ -54,10 +54,6 @@ import com.sun.star.uno.UnoRuntime; public class FirstLoadComponent { - /** Creates a new instance of FirstLoadComponent */ - public FirstLoadComponent() { - } - /** * @param args the command line arguments */ diff --git a/odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape.java b/odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape.java index 1818418d5766..1dcbb1e284a7 100644 --- a/odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape.java +++ b/odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape.java @@ -63,10 +63,6 @@ public class HelloTextTableShape { private XComponentContext xRemoteContext = null; private XMultiComponentFactory xRemoteServiceManager = null; - /** Creates a new instance of HelloTextTableShape */ - public HelloTextTableShape() { - } - /** * @param args the command line arguments */ |