Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMalgorzata Janczarska2011-11-17 13:37:16 +0000
committerTomasz Zarna2011-11-17 13:37:16 +0000
commitcfa9a16b8044938883a013f0f31a1919520603be (patch)
tree5e9660f8dc0b2e01ee155d16ea0404ea3e7445c9 /bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs
parent3f762b893c48833cd921ed0dda5d75a9a9f5524f (diff)
downloadeclipse.platform.team-cfa9a16b8044938883a013f0f31a1919520603be.tar.gz
eclipse.platform.team-cfa9a16b8044938883a013f0f31a1919520603be.tar.xz
eclipse.platform.team-cfa9a16b8044938883a013f0f31a1919520603be.zip
bug 263919: Synchronize must not abort when log-in to repository failsv20111117-1337
Diffstat (limited to 'bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs')
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/syncinfo/CVSResourceVariantTree.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/syncinfo/CVSResourceVariantTree.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/syncinfo/CVSResourceVariantTree.java
index 4af0c8aba..4482c459b 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/syncinfo/CVSResourceVariantTree.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/syncinfo/CVSResourceVariantTree.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2010 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
@@ -320,7 +320,7 @@ public class CVSResourceVariantTree extends ResourceVariantTree {
try {
Thread.sleep(waitTime);
} catch (InterruptedException e) {
- // Conitinue
+ // Continue
}
count++;
if (count >= 10) {

Back to the top