Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Finkbeiner2011-05-02 19:17:49 +0000
committerRyan D. Brooks2011-05-02 19:17:49 +0000
commita9cd67d24e73870a7fb7b8a6278a72fa55cf76e7 (patch)
treef73ff98ea17d52602fb0501f48e2c3b8e250865b
parente9ebcaf72b88f79bff87567a24db398473e48f45 (diff)
downloadorg.eclipse.osee-a9cd67d24e73870a7fb7b8a6278a72fa55cf76e7.tar.gz
org.eclipse.osee-a9cd67d24e73870a7fb7b8a6278a72fa55cf76e7.tar.xz
org.eclipse.osee-a9cd67d24e73870a7fb7b8a6278a72fa55cf76e7.zip
refactor: Fix extension point typo
-rw-r--r--plugins/org.eclipse.osee.ote.client.msg/plugin.xml2
-rw-r--r--plugins/org.eclipse.osee.ote.client.msg/schema/org.eclipse.osee.ote.client.msg.dBFactory.exsd (renamed from plugins/org.eclipse.osee.ote.client.msg/schema/org.wclipse.see.ote.client.msg.dBFactory.exsd)0
-rw-r--r--plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/core/internal/Activator.java6
3 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.ote.client.msg/plugin.xml b/plugins/org.eclipse.osee.ote.client.msg/plugin.xml
index 2054da1c630..adad32de403 100644
--- a/plugins/org.eclipse.osee.ote.client.msg/plugin.xml
+++ b/plugins/org.eclipse.osee.ote.client.msg/plugin.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
- <extension-point id="org.wclipse.see.ote.client.msg.dBFactory" name="Message Database Factory" schema="schema/org.wclipse.see.ote.client.msg.dBFactory.exsd"/>
+ <extension-point id="org.eclipse.osee.ote.client.msg.dBFactory" name="Message Database Factory" schema="schema/org.wclipse.see.ote.client.msg.dBFactory.exsd"/>
</plugin>
diff --git a/plugins/org.eclipse.osee.ote.client.msg/schema/org.wclipse.see.ote.client.msg.dBFactory.exsd b/plugins/org.eclipse.osee.ote.client.msg/schema/org.eclipse.osee.ote.client.msg.dBFactory.exsd
index 298d7c40520..298d7c40520 100644
--- a/plugins/org.eclipse.osee.ote.client.msg/schema/org.wclipse.see.ote.client.msg.dBFactory.exsd
+++ b/plugins/org.eclipse.osee.ote.client.msg/schema/org.eclipse.osee.ote.client.msg.dBFactory.exsd
diff --git a/plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/core/internal/Activator.java b/plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/core/internal/Activator.java
index 09417b5d788..1aeab0deebe 100644
--- a/plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/core/internal/Activator.java
+++ b/plugins/org.eclipse.osee.ote.client.msg/src/org/eclipse/osee/ote/client/msg/core/internal/Activator.java
@@ -46,7 +46,7 @@ public class Activator extends Plugin {
plugin = this;
ExtensionDefinedObjects<IMessageDbFactory> definedObjects =
- new ExtensionDefinedObjects<IMessageDbFactory>("org.wclipse.see.ote.client.msg.dBFactory", "DatabaseFactory",
+ new ExtensionDefinedObjects<IMessageDbFactory>("org.eclipse.osee.ote.client.msg.dBFactory", "DatabaseFactory",
"className");
try {
List<IMessageDbFactory> providers = definedObjects.getObjects();
@@ -55,7 +55,7 @@ public class Activator extends Plugin {
tracker.open(true);
} else {
OseeLog.log(Activator.class, Level.WARNING,
- "no message db factory found. Message Subscription Service not started");
+ "No message database factory (IMessageDbFactory) found. Message Subscription Service not started");
}
} catch (Exception ex) {
OseeLog.log(Activator.class, Level.SEVERE, "failed to process message database factory extensions", ex);
@@ -73,7 +73,7 @@ public class Activator extends Plugin {
/**
* Returns the shared instance
- *
+ *
* @return the shared instance
*/
public static Activator getDefault() {

Back to the top