Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2010-08-18 09:39:41 +0000
committerTomasz Zarna2010-08-18 09:39:41 +0000
commit3dd68fac949191f89c8650ce08fd9cabb6f17a8d (patch)
treefabc7ee6c59a22bb6c0487a41e7b5cf313650951 /bundles/org.eclipse.team.core/src
parent3d251d8dad75a8fc422db4507660736dd9f79ad9 (diff)
downloadeclipse.platform.team-3dd68fac949191f89c8650ce08fd9cabb6f17a8d.tar.gz
eclipse.platform.team-3dd68fac949191f89c8650ce08fd9cabb6f17a8d.tar.xz
eclipse.platform.team-3dd68fac949191f89c8650ce08fd9cabb6f17a8d.zip
bug 287526: AbstractResourceMappingScope doesn't need to explicitly implement ISynchronizationScope
Diffstat (limited to 'bundles/org.eclipse.team.core/src')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/mapping/AbstractResourceMappingScope.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/mapping/AbstractResourceMappingScope.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/mapping/AbstractResourceMappingScope.java
index ee8d1affb..a60b4f8ee 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/mapping/AbstractResourceMappingScope.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/mapping/AbstractResourceMappingScope.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2006 IBM Corporation and others.
+ * Copyright (c) 2000, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -14,13 +14,12 @@ import java.util.HashSet;
import java.util.Set;
import org.eclipse.core.resources.mapping.*;
-import org.eclipse.team.core.mapping.ISynchronizationScope;
import org.eclipse.team.internal.core.subscribers.AbstractSynchronizationScope;
/**
* Class that contains common resource mapping scope code.
*/
-public abstract class AbstractResourceMappingScope extends AbstractSynchronizationScope implements ISynchronizationScope {
+public abstract class AbstractResourceMappingScope extends AbstractSynchronizationScope {
/* (non-Javadoc)
* @see org.eclipse.team.core.mapping.IResourceMappingScope#getMapping(java.lang.Object)

Back to the top