Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrschmitt2010-01-08 19:43:31 +0000
committerrschmitt2010-01-08 19:43:31 +0000
commitca139a13b20db3847fd874969b8b324b61f26120 (patch)
tree07d9c5570a144fa11254f6cda4bfadf99db9e2a5
parent176cd3027484a0d059c3dad9bf1ac5c0eed852e0 (diff)
downloadorg.eclipse.osee-ca139a13b20db3847fd874969b8b324b61f26120.tar.gz
org.eclipse.osee-ca139a13b20db3847fd874969b8b324b61f26120.tar.xz
org.eclipse.osee-ca139a13b20db3847fd874969b8b324b61f26120.zip
-rw-r--r--org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/model/AttributeTypeFactory.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/model/AttributeTypeFactory.java b/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/model/AttributeTypeFactory.java
index f978798fd93..66896252580 100644
--- a/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/model/AttributeTypeFactory.java
+++ b/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/model/AttributeTypeFactory.java
@@ -38,9 +38,8 @@ public class AttributeTypeFactory implements IOseeTypeFactory {
"maxOccurences can not be less than minOccurences");
String checkedGuid = Conditions.checkGuidCreateIfNeeded(guid);
- return new AttributeType(checkedGuid, name, baseAttributeTypeId.intern(), attributeProviderNameId.intern(),
- fileTypeExtension.intern(), defaultValue, minOccurrences, maxOccurrences, tipText,
- taggerId != null ? taggerId.intern() : taggerId);
+ return new AttributeType(checkedGuid, name, baseAttributeTypeId, attributeProviderNameId, fileTypeExtension,
+ defaultValue, minOccurrences, maxOccurrences, tipText, taggerId);
}
public AttributeType createOrUpdate(AttributeTypeCache cache, String guid, String typeName, String baseAttributeTypeId, String attributeProviderNameId, String fileTypeExtension, String defaultValue, OseeEnumType oseeEnumType, int minOccurrences, int maxOccurrences, String description, String taggerId) throws OseeCoreException {

Back to the top