Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2004-10-29 14:00:38 +0000
committerMichael Valenta2004-10-29 14:00:38 +0000
commitd2b1128544c91def401b4cd36b6fa833bcd5ab8f (patch)
tree48c0c8890e5f4d9865abcb8e3df1983fb15c9821 /bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/operations
parent804da0ac2f3d634f250221c712db2e7fb6b6d141 (diff)
downloadeclipse.platform.team-d2b1128544c91def401b4cd36b6fa833bcd5ab8f.tar.gz
eclipse.platform.team-d2b1128544c91def401b4cd36b6fa833bcd5ab8f.tar.xz
eclipse.platform.team-d2b1128544c91def401b4cd36b6fa833bcd5ab8f.zip
[Bug 77155] [Change Sets] Log entry fetch fails for two date tags
Diffstat (limited to 'bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/operations')
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/operations/RemoteLogOperation.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/operations/RemoteLogOperation.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/operations/RemoteLogOperation.java
index 5018a29c7..b50aff5e5 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/operations/RemoteLogOperation.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/operations/RemoteLogOperation.java
@@ -214,9 +214,9 @@ public class RemoteLogOperation extends RepositoryLocationOperation {
ICVSRemoteResource[] remotes = remoteResources;
Command.LocalOption[] localOptions;
if(tag1 != null && tag2 != null) {
- localOptions = new Command.LocalOption[] {RLog.NO_TAGS, RLog.makeTagOption(tag1, tag2)};
+ localOptions = new Command.LocalOption[] {RLog.NO_TAGS, RLog.ONLY_INCLUDE_CHANGES, RLog.makeTagOption(tag1, tag2)};
} else {
- localOptions = new Command.LocalOption[] {RLog.NO_TAGS};
+ localOptions = new Command.LocalOption[] {RLog.NO_TAGS, RLog.ONLY_INCLUDE_CHANGES};
// Optimize the cases were we are only fetching the history for a single revision. If it is
// already cached, don't fetch it again.
ArrayList unCachedRemotes = new ArrayList();

Back to the top