From b1da6f32c0a40c55cde2bfd4469e15727d508d58 Mon Sep 17 00:00:00 2001 From: Andrew Finkbeiner Date: Tue, 28 Sep 2010 13:02:32 -0700 Subject: refactor: Put back the default constructor to maintain backwards compatibility through the next release --- .../src/org/eclipse/osee/framework/ui/plugin/OseeUiActivator.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'plugins') diff --git a/plugins/org.eclipse.osee.framework.ui.plugin/src/org/eclipse/osee/framework/ui/plugin/OseeUiActivator.java b/plugins/org.eclipse.osee.framework.ui.plugin/src/org/eclipse/osee/framework/ui/plugin/OseeUiActivator.java index 35a82ba4d71..2ee114df304 100644 --- a/plugins/org.eclipse.osee.framework.ui.plugin/src/org/eclipse/osee/framework/ui/plugin/OseeUiActivator.java +++ b/plugins/org.eclipse.osee.framework.ui.plugin/src/org/eclipse/osee/framework/ui/plugin/OseeUiActivator.java @@ -40,6 +40,12 @@ public abstract class OseeUiActivator extends AbstractUIPlugin { private PluginUtil helper; private final String pluginId; + @Deprecated + protected OseeUiActivator() { + super(); + this.pluginId = "org.eclipse.osee.framework.ui.plugin"; + } + protected OseeUiActivator(String pluginId) { super(); this.pluginId = pluginId; -- cgit v1.2.3