Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2011-01-24 11:53:55 +0000
committerDani Megert2011-01-24 11:53:55 +0000
commitb13aa5636769b3b2495be4b0ab3b7b65fbb00bbe (patch)
treeca78ae74c58b6ea02da7a5b14ff2e4a1ee8b7edb /bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/resources
parent3598027c3b135b53b6e591929c145869e73a6426 (diff)
downloadeclipse.platform.team-b13aa5636769b3b2495be4b0ab3b7b65fbb00bbe.tar.gz
eclipse.platform.team-b13aa5636769b3b2495be4b0ab3b7b65fbb00bbe.tar.xz
eclipse.platform.team-b13aa5636769b3b2495be4b0ab3b7b65fbb00bbe.zip
Replaced wrong usage of "it's" with "its".
Diffstat (limited to 'bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/resources')
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/resources/EclipseSynchronizer.java18
1 files changed, 6 insertions, 12 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/resources/EclipseSynchronizer.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/resources/EclipseSynchronizer.java
index d68ac044b..c5980e157 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/resources/EclipseSynchronizer.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/resources/EclipseSynchronizer.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
+ * Copyright (c) 2000, 2011 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
@@ -11,14 +11,7 @@
*******************************************************************************/
package org.eclipse.team.internal.ccvs.core.resources;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.HashMap;
-import java.util.HashSet;
-import java.util.Iterator;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
+import java.util.*;
import org.eclipse.core.resources.*;
import org.eclipse.core.runtime.*;
@@ -1693,9 +1686,10 @@ public class EclipseSynchronizer implements IFlushOperation {
}
/**
- * This method is to be invoked only from the move/delete hook. It's purpose
- * is to obtain the sync look in order to prevent other threads from accessing
- * sync info while the move/delete is taking place.
+ * This method is to be invoked only from the move/delete hook. Its purpose is to obtain the
+ * sync look in order to prevent other threads from accessing sync info while the move/delete is
+ * taking place.
+ *
* @param runnable
* @param monitor
* @throws CVSException

Back to the top