Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorddunne2011-10-27 23:29:43 +0000
committerRyan D. Brooks2011-10-27 23:29:43 +0000
commitcf0c83fca1b12645f806ff00292794c0ed751098 (patch)
tree9a59f79c7c1c109beb44e915f3892d388516cdae
parentcb5d46b12bc4272c17e2873fbe359fb3432a5e0b (diff)
downloadorg.eclipse.osee-cf0c83fca1b12645f806ff00292794c0ed751098.tar.gz
org.eclipse.osee-cf0c83fca1b12645f806ff00292794c0ed751098.tar.xz
org.eclipse.osee-cf0c83fca1b12645f806ff00292794c0ed751098.zip
refinement: Do not require extensions loaded for SMAOperationsSection
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/SMAOperationsSection.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/SMAOperationsSection.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/SMAOperationsSection.java
index abde3e6ecf2..1ae13b5d4ef 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/SMAOperationsSection.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/SMAOperationsSection.java
@@ -72,7 +72,7 @@ public class SMAOperationsSection extends SectionPart {
operationsSectionProviders = new ArrayList<ISMAOperationsSection>();
ExtensionDefinedObjects<ISMAOperationsSection> extensions =
new ExtensionDefinedObjects<ISMAOperationsSection>(Activator.PLUGIN_ID + ".AtsAdvancedOperationAction",
- "AtsAdvancedOperationAction", "classname");
+ "AtsAdvancedOperationAction", "classname", false);
for (ISMAOperationsSection item : extensions.getObjects()) {
operationsSectionProviders.add(item);
}

Back to the top