Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.core/src/org/eclipse/team/core/diff/provider/ThreeWayDiff.java')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/diff/provider/ThreeWayDiff.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/diff/provider/ThreeWayDiff.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/diff/provider/ThreeWayDiff.java
index 77a4c483e..575b593c0 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/diff/provider/ThreeWayDiff.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/diff/provider/ThreeWayDiff.java
@@ -19,7 +19,7 @@ import org.eclipse.team.internal.core.mapping.SyncInfoToDiffConverter;
/**
* Implementation of {@link IThreeWayDiff}.
- *
+ *
* @since 3.2
* @noextend This class is not intended to be subclassed by clients.
*/
@@ -62,7 +62,7 @@ public class ThreeWayDiff extends Diff implements IThreeWayDiff {
}
return direction;
}
-
+
private static int calculateKind(ITwoWayDiff localChange, ITwoWayDiff remoteChange) {
int localKind = NO_CHANGE;
if (localChange != null)
@@ -105,14 +105,14 @@ public class ThreeWayDiff extends Diff implements IThreeWayDiff {
int kind = getKind();
String label = ""; //$NON-NLS-1$
if(kind==IDiff.NO_CHANGE) {
- label = super.toDiffString();
+ label = super.toDiffString();
} else {
label = SyncInfoToDiffConverter.diffDirectionToString(getDirection());
label = NLS.bind(Messages.concatStrings, new String[] { label, super.toDiffString() });
}
- return label;
+ return label;
}
-
+
/* (non-Javadoc)
* @see org.eclipse.team.core.diff.provider.Diff#equals(java.lang.Object)
*/
@@ -122,7 +122,7 @@ public class ThreeWayDiff extends Diff implements IThreeWayDiff {
if (super.equals(obj)) {
if (obj instanceof ThreeWayDiff) {
ThreeWayDiff other = (ThreeWayDiff) obj;
- return changesEqual(getLocalChange(), other.getLocalChange())
+ return changesEqual(getLocalChange(), other.getLocalChange())
&& changesEqual(getRemoteChange(), other.getRemoteChange());
}
}

Back to the top