Community
Participate
Working Groups
With MEMstore branches can even be created if branching support is disabled in the repository.
Adding a check in Repository.java: public int createBranch(int branchID, BranchInfo branchInfo) { if (!isSupportingBranches()) { throw new IllegalStateException("Branching is not supported by " + this); } synchronized (createBranchLock) { IStoreAccessor accessor = StoreThreadLocal.getAccessor(); return accessor.createBranch(branchID, branchInfo); } }
Committed to HEAD
Reopen for changing assignee
Assignee changed
Available in 3.0 GA: http://download.eclipse.org/modeling/emf/cdo/updates/3.0-releases/