Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/importer/DispoSetCopier.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/importer/DispoSetCopier.java b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/importer/DispoSetCopier.java
index 483f725b771..09d1558ca64 100644
--- a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/importer/DispoSetCopier.java
+++ b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/internal/importer/DispoSetCopier.java
@@ -217,7 +217,7 @@ public class DispoSetCopier {
Map<String, Discrepancy> sourceDiscrepancies = sourceItem.getDiscrepanciesList();
for (String id : idsOfCoveredDiscrepancies) {
Discrepancy coveredDiscrepancy = sourceDiscrepancies.get(id);
- if (!destDescrepanciesTextOnly.contains(coveredDiscrepancy.getText())) {
+ if (coveredDiscrepancy == null || !destDescrepanciesTextOnly.contains(coveredDiscrepancy.getText())) {
return false;
}
}

Back to the top