Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrescobar2011-02-04 23:19:19 +0000
committerRyan D. Brooks2011-02-04 23:19:19 +0000
commitf5a8f8b88305275ab0051ff1e01ee9f0e151f6cc (patch)
tree0ba5e33130aec290771273d1c317a428b6707395
parent9f7ea4f60387c7f38b789ad7eac0a3b16556032c (diff)
downloadorg.eclipse.osee-f5a8f8b88305275ab0051ff1e01ee9f0e151f6cc.tar.gz
org.eclipse.osee-f5a8f8b88305275ab0051ff1e01ee9f0e151f6cc.tar.xz
org.eclipse.osee-f5a8f8b88305275ab0051ff1e01ee9f0e151f6cc.zip
bug: Automate conflict handling of destination/source deletions
Merge manager requires all unresolvable conflicts to have their source changes reverted. Given that the user has no choice over this, the system should handle the case for them and simply report the issue as an informational conflict.
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/conflict/ArtifactConflict.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/conflict/ArtifactConflict.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/conflict/ArtifactConflict.java
index c387f2ddebb..d412d2b2ee1 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/conflict/ArtifactConflict.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/conflict/ArtifactConflict.java
@@ -65,11 +65,7 @@ public class ArtifactConflict extends Conflict {
@Override
public ConflictStatus computeStatus() throws OseeCoreException {
- if (!sourceModType.isDeleted()) {
- return super.computeStatus(getObjectId(), ConflictStatus.NOT_RESOLVABLE);
- } else {
- return super.computeStatus(getObjectId(), ConflictStatus.INFORMATIONAL);
- }
+ return super.computeStatus(getObjectId(), ConflictStatus.INFORMATIONAL);
}
@Override

Back to the top