Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/BranchCache.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/BranchCache.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/BranchCache.java b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/BranchCache.java
index d1cf9f12ae5..68e3f5cb06f 100644
--- a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/BranchCache.java
+++ b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/cache/BranchCache.java
@@ -26,9 +26,9 @@ import org.eclipse.osee.framework.jdk.core.util.Conditions;
* @author Roberto E. Escobar
* @author Ryan D. Brooks
*/
-public class BranchCache extends AbstractOseeCache<String, Branch> {
+public class BranchCache extends AbstractOseeCache<Long, Branch> {
- public BranchCache(IOseeDataAccessor<String, Branch> dataAccessor) {
+ public BranchCache(IOseeDataAccessor<Long, Branch> dataAccessor) {
super(OseeCacheEnum.BRANCH_CACHE, dataAccessor, false);
}

Back to the top