Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/internal/ArtifactTypeDataAccessor.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/internal/ArtifactTypeDataAccessor.java b/plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/internal/ArtifactTypeDataAccessor.java
index fcc2829501b..e7065336f37 100644
--- a/plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/internal/ArtifactTypeDataAccessor.java
+++ b/plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/internal/ArtifactTypeDataAccessor.java
@@ -91,8 +91,8 @@ public class ArtifactTypeDataAccessor<T extends AbstractOseeType<Long>> implemen
private Collection<String> findOseeTypeData() throws OseeCoreException {
Collection<String> paths = new ArrayList<String>();
- Integer artifactTypeId = identityService.getLocalId(CoreArtifactTypes.OseeTypeDefinition.getGuid());
- Integer attributeTypeId = identityService.getLocalId(CoreAttributeTypes.UriGeneralStringData.getGuid());
+ Integer artifactTypeId = identityService.getLocalId(CoreArtifactTypes.OseeTypeDefinition);
+ Integer attributeTypeId = identityService.getLocalId(CoreAttributeTypes.UriGeneralStringData);
Branch commonBranch = branchCache.get(CoreBranches.COMMON);

Back to the top