Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.define.report/src/org/eclipse/osee/define/report/internal/TraceInformationAccumulator.java')
-rw-r--r--plugins/org.eclipse.osee.define.report/src/org/eclipse/osee/define/report/internal/TraceInformationAccumulator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.define.report/src/org/eclipse/osee/define/report/internal/TraceInformationAccumulator.java b/plugins/org.eclipse.osee.define.report/src/org/eclipse/osee/define/report/internal/TraceInformationAccumulator.java
index 35eb013d5db..c6f45118a33 100644
--- a/plugins/org.eclipse.osee.define.report/src/org/eclipse/osee/define/report/internal/TraceInformationAccumulator.java
+++ b/plugins/org.eclipse.osee.define.report/src/org/eclipse/osee/define/report/internal/TraceInformationAccumulator.java
@@ -16,7 +16,7 @@ import java.util.List;
import org.eclipse.osee.define.report.AlternateTypeOutput;
import org.eclipse.osee.define.report.TraceReportGenerator;
import org.eclipse.osee.framework.core.data.IAttributeType;
-import org.eclipse.osee.framework.core.data.IRelationTypeSide;
+import org.eclipse.osee.framework.core.data.RelationTypeSide;
import org.eclipse.osee.framework.core.enums.CoreAttributeTypes;
import org.eclipse.osee.framework.core.enums.CoreRelationTypes;
import org.eclipse.osee.framework.jdk.core.util.Conditions;
@@ -143,7 +143,7 @@ public class TraceInformationAccumulator {
return toReturn;
}
- private int processSoftwareReqtSubItem(ArtifactReadable softwareReqt, IRelationTypeSide type, int location) throws IOException {
+ private int processSoftwareReqtSubItem(ArtifactReadable softwareReqt, RelationTypeSide type, int location) throws IOException {
List<ArtifactReadable> items = softwareReqt.getRelated(type).getList();
if (items.size() > 0) {
for (ArtifactReadable ar : items) {

Back to the top