Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSSyncTreeSubscriber.java')
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSSyncTreeSubscriber.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSSyncTreeSubscriber.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSSyncTreeSubscriber.java
index 2cb785bd7..4bc1dca7b 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSSyncTreeSubscriber.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSSyncTreeSubscriber.java
@@ -213,14 +213,14 @@ public abstract class CVSSyncTreeSubscriber extends SyncTreeSubscriber {
/**
* Return the synchronization cache that provides access to the base sychronization bytes.
*/
- protected abstract ResourceVariantTree getBaseSynchronizationCache();
+ protected abstract ResourceVariantByteStore getBaseSynchronizationCache();
/**
* Return the synchronization cache that provides access to the base sychronization bytes.
*/
- protected abstract ResourceVariantTree getRemoteSynchronizationCache();
+ protected abstract ResourceVariantByteStore getRemoteSynchronizationCache();
- protected IResourceVariant getRemoteResource(IResource resource, ResourceVariantTree cache) throws TeamException {
+ public IResourceVariant getRemoteResource(IResource resource, ResourceVariantByteStore cache) throws TeamException {
byte[] remoteBytes = cache.getBytes(resource);
if (remoteBytes == null) {
// There is no remote handle for this resource
@@ -260,9 +260,9 @@ public abstract class CVSSyncTreeSubscriber extends SyncTreeSubscriber {
}
}
- private String getSyncName(ResourceVariantTree cache) {
- if (cache instanceof PersistantResourceVariantTree) {
- return ((PersistantResourceVariantTree)cache).getSyncName().toString();
+ private String getSyncName(ResourceVariantByteStore cache) {
+ if (cache instanceof PersistantResourceVariantByteStore) {
+ return ((PersistantResourceVariantByteStore)cache).getSyncName().toString();
}
return cache.getClass().getName();
}
@@ -316,7 +316,7 @@ public abstract class CVSSyncTreeSubscriber extends SyncTreeSubscriber {
}
}
- private IResource[] getMembers(ResourceVariantTree cache, IResource resource) throws TeamException, CoreException {
+ private IResource[] getMembers(ResourceVariantByteStore cache, IResource resource) throws TeamException, CoreException {
// Filter and return only phantoms associated with the remote synchronizer.
IResource[] members;
try {

Back to the top