Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/ArtifactExplorer.java')
-rw-r--r--plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/ArtifactExplorer.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/ArtifactExplorer.java b/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/ArtifactExplorer.java
index c4c4e562849..2695ad92f6d 100644
--- a/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/ArtifactExplorer.java
+++ b/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/ArtifactExplorer.java
@@ -1417,13 +1417,13 @@ public class ArtifactExplorer extends GenericViewPart implements IArtifactExplor
if (branch == null) {
return;
}
- if (branch.getGuid().equals(branchEvent.getBranchGuid())) {
+ if (branch.getGuid().equals(branchEvent.getBranchUuid())) {
if ((branchEvent.getEventType() == BranchEventType.Committing || branchEvent.getEventType() == BranchEventType.Committed)) {
SkynetViews.closeView(VIEW_ID, getViewSite().getSecondaryId());
} else {
refreshBranchWarning();
}
- } else if (branch.getGuid().equals(branchEvent.getDestinationBranchGuid())) {
+ } else if (branch.getGuid().equals(branchEvent.getDestinationBranchUuid())) {
if ((branchEvent.getEventType() == BranchEventType.Committed)) {
Displays.ensureInDisplayThread(new Runnable() {
@Override

Back to the top