Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjphillips2008-07-02 22:13:46 +0000
committerjphillips2008-07-02 22:13:46 +0000
commit05efb2181aa75a052307150281a60a27d36c48aa (patch)
tree2b2650dd4e16f25eb52df48a05dcc03405d3cc85
parent95cb6ab754d00196cbb6585f2d9e54fea275ca66 (diff)
downloadorg.eclipse.osee-05efb2181aa75a052307150281a60a27d36c48aa.tar.gz
org.eclipse.osee-05efb2181aa75a052307150281a60a27d36c48aa.tar.xz
org.eclipse.osee-05efb2181aa75a052307150281a60a27d36c48aa.zip
-rw-r--r--MS_0.2.0_20080619/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/widgets/xmerge/MergeUtility.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/MS_0.2.0_20080619/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/widgets/xmerge/MergeUtility.java b/MS_0.2.0_20080619/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/widgets/xmerge/MergeUtility.java
index adab7095309..43b09eb3f72 100644
--- a/MS_0.2.0_20080619/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/widgets/xmerge/MergeUtility.java
+++ b/MS_0.2.0_20080619/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/widgets/xmerge/MergeUtility.java
@@ -12,6 +12,7 @@
package org.eclipse.osee.framework.ui.skynet.widgets.xmerge;
import java.sql.SQLException;
+
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
import org.eclipse.osee.framework.skynet.core.artifact.ArtifactPersistenceManager;
@@ -43,7 +44,7 @@ public class MergeUtility {
public static final String COMMITED_PROMPT =
"You can not change the value for a conflict that has been marked resolved or has already been commited. Change the conflict status if the source branch has not been commited and you wish to modify the value.";
public static final String ARTIFACT_DELETED_PROMPT =
- "This Artifact has been changed on the source branch, but has been deleted on the destination branch. In order to commit this branch and resolve this conflict the Artifact will need to be reverted on the source branch";
+ "This Artifact has been changed on the source branch, but has been deleted on the destination branch. In order to commit this branch and resolve this conflict the Artifact will need to be reverted on the source branch. \n\nReverting the artifact is irreversible and you will need to restart OSEE after reverting to see changes.";
public static void clearValue(Conflict conflict, Shell shell, boolean prompt) throws SQLException, MultipleArtifactsExist, ArtifactDoesNotExist, Exception {
if (conflict == null) return;

Back to the top