diff options
author | Jean Michel-Lemieux | 2004-04-29 11:18:13 -0400 |
---|---|---|
committer | Jean Michel-Lemieux | 2004-04-29 11:18:13 -0400 |
commit | 6e4acfb3796629df51af7ee7babddab2ca39d5f4 (patch) | |
tree | 9dea0a4a1afb66dc2f6aa18c37a021f1a713175c | |
parent | 68449155c01e1eb2e41c47cf38ee225917a413a6 (diff) | |
download | eclipse.platform.team-6e4acfb3796629df51af7ee7babddab2ca39d5f4.tar.gz eclipse.platform.team-6e4acfb3796629df51af7ee7babddab2ca39d5f4.tar.xz eclipse.platform.team-6e4acfb3796629df51af7ee7babddab2ca39d5f4.zip |
monitor not being passed correctly
-rw-r--r-- | bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantPageSaveablePart.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantPageSaveablePart.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantPageSaveablePart.java index ff112f890..60dbd4c9b 100644 --- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantPageSaveablePart.java +++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantPageSaveablePart.java @@ -345,7 +345,7 @@ public class ParticipantPageSaveablePart extends SaveablePartAdapter implements manager.busyCursorWhile(new IRunnableWithProgress() { public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException { try { - node.cacheContents(new NullProgressMonitor()); + node.cacheContents(monitor); hookContentChangeListener(node); } catch (TeamException e) { Utils.handle(e); |