Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/BranchCacheUpdateUtil.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/BranchCacheUpdateUtil.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/BranchCacheUpdateUtil.java b/plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/BranchCacheUpdateUtil.java
index 59439590f92..1734a9f2907 100644
--- a/plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/BranchCacheUpdateUtil.java
+++ b/plugins/org.eclipse.osee.framework.core.message/src/org/eclipse/osee/framework/core/message/BranchCacheUpdateUtil.java
@@ -64,7 +64,8 @@ public final class BranchCacheUpdateUtil {
long branchId = srcItem.getBranchId();
Branch updated =
factory.createOrUpdate(cache, branchId, srcItem.getBranchName(), srcItem.getBranchType(),
- srcItem.getBranchState(), srcItem.getBranchArchived().isArchived(), srcItem.getStorageState());
+ srcItem.getBranchState(), srcItem.getBranchArchived().isArchived(), srcItem.getStorageState(),
+ srcItem.isInheritAccessControl());
updatedItems.add(updated);
Integer artifactId = branchToAssocArt.get(branchId);
@@ -132,7 +133,7 @@ public final class BranchCacheUpdateUtil {
Long branchId = br.getId();
message.getBranchRows().add(
new BranchRow(br.getId(), br.getName(), br.getBranchType(), br.getBranchState(), br.getArchiveState(),
- br.getStorageState()));
+ br.getStorageState(), br.isInheritAccessControl()));
if (br.hasParentBranch()) {
message.getChildToParent().put(branchId, br.getParentBranch().getId());
}

Back to the top