Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2005-03-30 15:34:15 +0000
committerMichael Valenta2005-03-30 15:34:15 +0000
commitf1a0cf3451a0bdb063d1a90cb84fcdaf99d40025 (patch)
tree0b9177b258696b6cd9b80cd996d20129cb80ad46 /bundles/org.eclipse.team.cvs.core
parentac75bc7e9ddac8a1b60c828d3e50ce0ee7c3a207 (diff)
downloadeclipse.platform.team-f1a0cf3451a0bdb063d1a90cb84fcdaf99d40025.tar.gz
eclipse.platform.team-f1a0cf3451a0bdb063d1a90cb84fcdaf99d40025.tar.xz
eclipse.platform.team-f1a0cf3451a0bdb063d1a90cb84fcdaf99d40025.zip
Bug 85317 CVS Tag: Progress waits long at same place and often fails
Diffstat (limited to 'bundles/org.eclipse.team.cvs.core')
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Request.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Request.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Request.java
index bc3c9e10c..2aa7dc246 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Request.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Request.java
@@ -109,6 +109,7 @@ public abstract class Request {
// move some rather than remaining still and then jumping to 100).
final int TOTAL_WORK = 300;
monitor.beginTask(Policy.bind("Command.receivingResponses"), TOTAL_WORK); //$NON-NLS-1$
+ monitor.subTask(Policy.bind("Command.receivingResponses")); //$NON-NLS-1$
int halfWay = TOTAL_WORK / 2;
int currentIncrement = 4;
int nextProgress = currentIncrement;

Back to the top