Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/render/UpdateArtifactOperation.java')
-rw-r--r--plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/render/UpdateArtifactOperation.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/render/UpdateArtifactOperation.java b/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/render/UpdateArtifactOperation.java
index 704029fc80f..755bbdc830c 100644
--- a/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/render/UpdateArtifactOperation.java
+++ b/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/render/UpdateArtifactOperation.java
@@ -166,8 +166,9 @@ public class UpdateArtifactOperation extends AbstractOperation {
XResultData resultData = new XResultData(false);
resultData.setTitle("Artifacts with Invalid Applicability Tags");
resultData.addRaw(
- "The following artifacts contain invalid feature values and/or inconsistent start and ends tags and could not be saved." //
- + "\nPlease make sure the feature values used are found in the Feature Definition artifact and the start and end tags match, then try to save the artifact again.\n\n");
+ "The following artifacts contain invalid feature values and/or inconsistent start and ends tags." //
+ + "\nPlease make sure the feature values used are found in the FeatureDefinition Artifact and the start and end tags match.\n"
+ + "This must be fixed before commit into the parent branch occurs.\n\n");
for (Map.Entry<Long, String> entry : change.getInvalidApplicabilityTagArts().entrySet()) {
resultData.addRaw("Artifact ");

Back to the top