Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.orcs.rest/src/org/eclipse/osee/orcs/rest/internal/HtmlWriter.java')
-rw-r--r--plugins/org.eclipse.osee.orcs.rest/src/org/eclipse/osee/orcs/rest/internal/HtmlWriter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.orcs.rest/src/org/eclipse/osee/orcs/rest/internal/HtmlWriter.java b/plugins/org.eclipse.osee.orcs.rest/src/org/eclipse/osee/orcs/rest/internal/HtmlWriter.java
index 881e8b222a4..1c0e4362055 100644
--- a/plugins/org.eclipse.osee.orcs.rest/src/org/eclipse/osee/orcs/rest/internal/HtmlWriter.java
+++ b/plugins/org.eclipse.osee.orcs.rest/src/org/eclipse/osee/orcs/rest/internal/HtmlWriter.java
@@ -72,7 +72,7 @@ public class HtmlWriter {
}
data.put("Branch", asLink(uri.toASCIIString(), branch.getName()));
- Collection<IAttributeType> types = artifact.getAttributeTypes();
+ Collection<IAttributeType> types = artifact.getExistingAttributeTypes();
for (IAttributeType type : types) {
for (AttributeReadable<?> attr : artifact.getAttributes(type)) {
String value = attr.getDisplayableString();

Back to the top