Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.dsl.ui.integration')
-rw-r--r--plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeDslArtifactUpdateOperation.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeDslArtifactUpdateOperation.java b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeDslArtifactUpdateOperation.java
index 797b3ea2ff1..c58f3ac7ac0 100644
--- a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeDslArtifactUpdateOperation.java
+++ b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeDslArtifactUpdateOperation.java
@@ -55,8 +55,8 @@ public class OseeDslArtifactUpdateOperation extends AbstractOperation {
Map<Branch, SkynetTransaction> transactionMap = new HashMap<Branch, SkynetTransaction>();
for (OseeDslSegment segment : segments) {
- int startAt = segment.end();
- int endAt = segment.start();
+ int startAt = segment.start();
+ int endAt = segment.end();
String data = source.substring(startAt, endAt);
addChanges(transactionMap, segment.getBranchGuid(), segment.getArtifactGuid(), data);

Back to the top