Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmisinco2012-06-18 21:11:31 +0000
committerRoberto E. Escobar2012-07-20 21:25:44 +0000
commitc28c1e581133dcdd6c02a2e157ea23b75126a808 (patch)
treee66d18d30ba7d93c08f7a168703ac82a00b266f2 /plugins/org.eclipse.osee.display.presenter
parent8473219763a0b85db4979b022566c7a547a373dc (diff)
downloadorg.eclipse.osee-c28c1e581133dcdd6c02a2e157ea23b75126a808.tar.gz
org.eclipse.osee-c28c1e581133dcdd6c02a2e157ea23b75126a808.tar.xz
org.eclipse.osee-c28c1e581133dcdd6c02a2e157ea23b75126a808.zip
feature[ats_M5LLE]: Add OrcsData creation and cleanup OrcsDS services
Diffstat (limited to 'plugins/org.eclipse.osee.display.presenter')
-rw-r--r--plugins/org.eclipse.osee.display.presenter/src/org/eclipse/osee/display/presenter/AttributeTypeUtil.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.display.presenter/src/org/eclipse/osee/display/presenter/AttributeTypeUtil.java b/plugins/org.eclipse.osee.display.presenter/src/org/eclipse/osee/display/presenter/AttributeTypeUtil.java
index 181fa5380d2..c902653b958 100644
--- a/plugins/org.eclipse.osee.display.presenter/src/org/eclipse/osee/display/presenter/AttributeTypeUtil.java
+++ b/plugins/org.eclipse.osee.display.presenter/src/org/eclipse/osee/display/presenter/AttributeTypeUtil.java
@@ -28,7 +28,7 @@ public class AttributeTypeUtil {
public static List<IAttributeType> getEmptyTypes(ArtifactReadable artifact) throws OseeCoreException {
List<IAttributeType> items = new ArrayList<IAttributeType>();
- for (IAttributeType type : artifact.getAttributeTypes()) {
+ for (IAttributeType type : artifact.getExistingAttributeTypes()) {
if (!CoreAttributeTypes.Name.equals(type) && artifact.getAttributes(type).isEmpty()) {
items.add(type);
}

Back to the top