Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrbrooks2008-10-30 22:25:44 +0000
committerrbrooks2008-10-30 22:25:44 +0000
commit728b07f6c329d0ce28d15b1cf3d81be97cf56677 (patch)
tree254304e4ab46eee2eadeeafb25e78b9d5d0fd685 /org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/artifact/massEditor/MassXViewer.java
parentda082645cc4e0fc7f85b8cbe7e215f5579a97f3f (diff)
downloadorg.eclipse.osee-728b07f6c329d0ce28d15b1cf3d81be97cf56677.tar.gz
org.eclipse.osee-728b07f6c329d0ce28d15b1cf3d81be97cf56677.tar.xz
org.eclipse.osee-728b07f6c329d0ce28d15b1cf3d81be97cf56677.zip
Renamed BranchPersistenceManager to BranchManager
Diffstat (limited to 'org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/artifact/massEditor/MassXViewer.java')
-rw-r--r--org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/artifact/massEditor/MassXViewer.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/artifact/massEditor/MassXViewer.java b/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/artifact/massEditor/MassXViewer.java
index 37beaec3df0..e8fc6404fab 100644
--- a/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/artifact/massEditor/MassXViewer.java
+++ b/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/artifact/massEditor/MassXViewer.java
@@ -23,7 +23,7 @@ import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
import org.eclipse.osee.framework.skynet.core.artifact.ArtifactData;
import org.eclipse.osee.framework.skynet.core.artifact.ArtifactTransfer;
-import org.eclipse.osee.framework.skynet.core.artifact.BranchPersistenceManager;
+import org.eclipse.osee.framework.skynet.core.artifact.BranchManager;
import org.eclipse.osee.framework.skynet.core.event.FrameworkTransactionData;
import org.eclipse.osee.framework.skynet.core.event.IArtifactsChangeTypeEventListener;
import org.eclipse.osee.framework.skynet.core.event.IArtifactsPurgedEventListener;
@@ -150,7 +150,7 @@ public class MassXViewer extends XViewer implements IFrameworkTransactionEventLi
Collection<Artifact> arts = getSelectedArtifacts();
if (arts.size() > 0) {
Artifact artifact = arts.iterator().next();
- if (artifact.getBranch() == BranchPersistenceManager.getDefaultBranch()) event.data =
+ if (artifact.getBranch() == BranchManager.getDefaultBranch()) event.data =
new ArtifactData(arts.toArray(new Artifact[arts.size()]), "", MassArtifactEditor.EDITOR_ID);
}
}
@@ -160,7 +160,7 @@ public class MassXViewer extends XViewer implements IFrameworkTransactionEventLi
Collection<Artifact> arts = getSelectedArtifacts();
if (arts.size() > 0) {
Artifact artifact = arts.iterator().next();
- if (artifact.getBranch() == BranchPersistenceManager.getDefaultBranch()) event.doit = true;
+ if (artifact.getBranch() == BranchManager.getDefaultBranch()) event.doit = true;
}
}
});

Back to the top