Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2005-12-21 21:33:49 +0000
committerMichael Valenta2005-12-21 21:33:49 +0000
commiteb7f9b0977797abfd10c02a9b6f8de8a0bf9e9b3 (patch)
treeaea60d676c0f3abe7edd263b16c799abc3fabe7b /bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/provider/SynchronizationContext.java
parent51fdea12aa061e52df424d81ab59e531262874c6 (diff)
downloadeclipse.platform.team-eb7f9b0977797abfd10c02a9b6f8de8a0bf9e9b3.tar.gz
eclipse.platform.team-eb7f9b0977797abfd10c02a9b6f8de8a0bf9e9b3.tar.xz
eclipse.platform.team-eb7f9b0977797abfd10c02a9b6f8de8a0bf9e9b3.zip
Bug 120365 [Model Sync] Model Participant still needs SyncInfoSet
Diffstat (limited to 'bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/provider/SynchronizationContext.java')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/provider/SynchronizationContext.java13
1 files changed, 1 insertions, 12 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/provider/SynchronizationContext.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/provider/SynchronizationContext.java
index 25f015828..b8635715b 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/provider/SynchronizationContext.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/provider/SynchronizationContext.java
@@ -11,8 +11,6 @@
package org.eclipse.team.core.mapping.provider;
import org.eclipse.team.core.mapping.*;
-import org.eclipse.team.core.synchronize.ISyncInfoTree;
-import org.eclipse.team.core.synchronize.SyncInfoTree;
import org.eclipse.team.internal.core.mapping.DiffCache;
/**
@@ -33,7 +31,6 @@ public abstract class SynchronizationContext implements ISynchronizationContext
private IResourceMappingScope input;
private final String type;
- private final SyncInfoTree tree;
private final IResourceDiffTree deltaTree;
private DiffCache cache;
@@ -43,10 +40,9 @@ public abstract class SynchronizationContext implements ISynchronizationContext
* @param type the type of synchronization (ONE_WAY or TWO_WAY)
* @param tree the sync info tree that contains all out-of-sync resources
*/
- protected SynchronizationContext(IResourceMappingScope input, String type, SyncInfoTree tree, IResourceDiffTree deltaTree) {
+ protected SynchronizationContext(IResourceMappingScope input, String type, IResourceDiffTree deltaTree) {
this.input = input;
this.type = type;
- this.tree = tree;
this.deltaTree = deltaTree;
}
@@ -58,13 +54,6 @@ public abstract class SynchronizationContext implements ISynchronizationContext
}
/* (non-Javadoc)
- * @see org.eclipse.team.ui.mapping.ISynchronizationContext#getSyncInfoTree()
- */
- public ISyncInfoTree getSyncInfoTree() {
- return tree;
- }
-
- /* (non-Javadoc)
* @see org.eclipse.team.ui.mapping.ISynchronizationContext#getType()
*/
public String getType() {

Back to the top