Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/AtsBranchCommitOperation.java')
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/AtsBranchCommitOperation.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/AtsBranchCommitOperation.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/AtsBranchCommitOperation.java
index 00343f114fe..205e68e6c0c 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/AtsBranchCommitOperation.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/util/AtsBranchCommitOperation.java
@@ -118,9 +118,8 @@ public class AtsBranchCommitOperation extends AbstractOperation {
if (branchCommitted) {
// Create reviews as necessary
AtsChangeSet changes = new AtsChangeSet("Create Reviews upon Commit");
- boolean added =
- AtsBranchUtil.createNecessaryBranchEventReviews(StateEventType.CommitBranch, teamArt, new Date(),
- AtsCoreUsers.SYSTEM_USER, changes);
+ boolean added = AtsBranchUtil.createNecessaryBranchEventReviews(StateEventType.CommitBranch, teamArt,
+ new Date(), AtsCoreUsers.SYSTEM_USER, changes);
if (added) {
changes.execute();
}

Back to the top