summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-20 13:44:28 +0200
committerNoel Grandin <noel@peralex.com>2014-10-07 13:20:00 +0200
commit222505c41f32eb39598243e319c6c4c95a851f27 (patch)
tree0804381b0a57e7e03c3e74f8cf7101b194a2f2bc /odk
parent8ab5a090f632507802072b20660c8403bf4bfd39 (diff)
java: no need to explicitly extend java.lang.Object
Change-Id: I635d1f99aa104909bd53a49c18efd433b9b9cb98
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/FirstSteps/FirstConnection.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DisableCommands/DisableCommandsTest.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/PathSettings/PathSettingsTest.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/PathSubstitution/PathSubstitutionTest.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/TerminationTest/TerminationTest.java2
5 files changed, 5 insertions, 5 deletions
diff --git a/odk/examples/DevelopersGuide/FirstSteps/FirstConnection.java b/odk/examples/DevelopersGuide/FirstSteps/FirstConnection.java
index d38357fe4574..e4b3dffe81b9 100644
--- a/odk/examples/DevelopersGuide/FirstSteps/FirstConnection.java
+++ b/odk/examples/DevelopersGuide/FirstSteps/FirstConnection.java
@@ -32,7 +32,7 @@
*
*************************************************************************/
-public class FirstConnection extends java.lang.Object {
+public class FirstConnection {
public static void main(String[] args) {
try {
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DisableCommands/DisableCommandsTest.java b/odk/examples/DevelopersGuide/OfficeDev/DisableCommands/DisableCommandsTest.java
index d600609dc3d9..406cdcb69866 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DisableCommands/DisableCommandsTest.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DisableCommands/DisableCommandsTest.java
@@ -45,7 +45,7 @@ import com.sun.star.text.XTextDocument;
* Provides example code how to enable/disable
* commands.
*/
-public class DisableCommandsTest extends java.lang.Object {
+public class DisableCommandsTest {
/*
* A list of command names
diff --git a/odk/examples/DevelopersGuide/OfficeDev/PathSettings/PathSettingsTest.java b/odk/examples/DevelopersGuide/OfficeDev/PathSettings/PathSettingsTest.java
index a25ae7465b84..6a46745933c2 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/PathSettings/PathSettingsTest.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/PathSettings/PathSettingsTest.java
@@ -41,7 +41,7 @@ import com.sun.star.util.thePathSettings;
* Provides example code how to access and use the
* path pathsettings servce.
*/
-public class PathSettingsTest extends java.lang.Object {
+public class PathSettingsTest {
/*
* List of pre-defined path variables supported by
diff --git a/odk/examples/DevelopersGuide/OfficeDev/PathSubstitution/PathSubstitutionTest.java b/odk/examples/DevelopersGuide/OfficeDev/PathSubstitution/PathSubstitutionTest.java
index 8f026840d4e2..5e0b9991e871 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/PathSubstitution/PathSubstitutionTest.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/PathSubstitution/PathSubstitutionTest.java
@@ -37,7 +37,7 @@ import com.sun.star.uno.XComponentContext;
import com.sun.star.lang.XMultiComponentFactory;
import com.sun.star.util.XStringSubstitution;
-public class PathSubstitutionTest extends java.lang.Object {
+public class PathSubstitutionTest {
/*
* List of pre-defined path variables supported by
diff --git a/odk/examples/DevelopersGuide/OfficeDev/TerminationTest/TerminationTest.java b/odk/examples/DevelopersGuide/OfficeDev/TerminationTest/TerminationTest.java
index 1dc59d318af1..23c492273674 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/TerminationTest/TerminationTest.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/TerminationTest/TerminationTest.java
@@ -37,7 +37,7 @@ import com.sun.star.uno.XComponentContext;
import com.sun.star.lang.XMultiComponentFactory;
import com.sun.star.frame.XDesktop;
-public class TerminationTest extends java.lang.Object {
+public class TerminationTest {
private static boolean atWork = false;
/**