Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/AttributeExtensionManager.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/AttributeExtensionManager.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/AttributeExtensionManager.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/AttributeExtensionManager.java
index d4b4df8cb25..a6508d61b20 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/AttributeExtensionManager.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/AttributeExtensionManager.java
@@ -38,9 +38,11 @@ public class AttributeExtensionManager {
private static final String ATTRIBUTE_TYPE = Activator.PLUGIN_ID + ".AttributeType";
private static final String ATTRIBUTE_DATA_PROVIDER_TYPE = Activator.PLUGIN_ID + ".AttributeDataProvider";
- private static final String[] attributeBaseTypes = new String[] {"CharacterBackedAttributeType",
+ private static final String[] attributeBaseTypes = new String[] {
+ "CharacterBackedAttributeType",
"BinaryBackedAttributeType"};
- private static final String[] attributeProviderBaseTypes = new String[] {"CharacterAttributeDataProvider",
+ private static final String[] attributeProviderBaseTypes = new String[] {
+ "CharacterAttributeDataProvider",
"BinaryAttributeDataProvider"};
private static final AttributeExtensionManager instance = new AttributeExtensionManager();

Back to the top