Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrschmitt2009-12-07 19:50:00 +0000
committerrschmitt2009-12-07 19:50:00 +0000
commit8da22cc381b3d7794b93904d8283708d3763c096 (patch)
tree3f894752490840e3e20586b918cf29ad2374a5e1 /org.eclipse.osee.define
parentd2a7e602fba866b2fd4748b8f6b96a93607ef6e1 (diff)
downloadorg.eclipse.osee-8da22cc381b3d7794b93904d8283708d3763c096.tar.gz
org.eclipse.osee-8da22cc381b3d7794b93904d8283708d3763c096.tar.xz
org.eclipse.osee-8da22cc381b3d7794b93904d8283708d3763c096.zip
Removed deprecated SkynetTransaction.<init>(Branch); added meaningful comments to former call sites of this constructor
Diffstat (limited to 'org.eclipse.osee.define')
-rw-r--r--org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/PublishWithSpecifiedTemplate.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/PublishWithSpecifiedTemplate.java b/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/PublishWithSpecifiedTemplate.java
index 88a39782dab..ad96d56c8a7 100644
--- a/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/PublishWithSpecifiedTemplate.java
+++ b/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/PublishWithSpecifiedTemplate.java
@@ -57,7 +57,7 @@ public class PublishWithSpecifiedTemplate extends AbstractBlam {
WordTemplateRenderer renderer = new WordTemplateRenderer();
- SkynetTransaction transaction = new SkynetTransaction(branch);
+ SkynetTransaction transaction = new SkynetTransaction(branch, "BLAM: Publish with specified template");
renderer.setOptions(new VariableMap(WordTemplateRenderer.UPDATE_PARAGRAPH_NUMBER_OPTION, updateParagraphNumber,
ITemplateRenderer.TRANSACTION_OPTION, transaction));

Back to the top