Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/BranchStatusColumn.java')
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/BranchStatusColumn.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/BranchStatusColumn.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/BranchStatusColumn.java
index 77c57162180..32198f8cf80 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/BranchStatusColumn.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/BranchStatusColumn.java
@@ -73,8 +73,8 @@ public class BranchStatusColumn extends XViewerAtsColumn implements IXViewerValu
if (AtsClientService.get().getBranchService().isWorkingBranchInWork(teamArt)) {
return "Working";
} else if (AtsClientService.get().getBranchService().isCommittedBranchExists(teamArt)) {
- if (!AtsClientService.get().getBranchService().isAllObjectsToCommitToConfigured(teamArt) || !AtsClientService.get().getBranchService().isBranchesAllCommitted(
- teamArt)) {
+ if (!AtsClientService.get().getBranchService().isAllObjectsToCommitToConfigured(
+ teamArt) || !AtsClientService.get().getBranchService().isBranchesAllCommitted(teamArt)) {
return "Needs Commit";
}
return "Committed";

Back to the top