From 222505c41f32eb39598243e319c6c4c95a851f27 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 20 Aug 2014 13:44:28 +0200 Subject: java: no need to explicitly extend java.lang.Object Change-Id: I635d1f99aa104909bd53a49c18efd433b9b9cb98 --- .../DevelopersGuide/OfficeDev/DisableCommands/DisableCommandsTest.java | 2 +- .../DevelopersGuide/OfficeDev/PathSettings/PathSettingsTest.java | 2 +- .../OfficeDev/PathSubstitution/PathSubstitutionTest.java | 2 +- .../DevelopersGuide/OfficeDev/TerminationTest/TerminationTest.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'odk/examples/DevelopersGuide/OfficeDev') 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; /** -- cgit