Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMalgorzata Janczarska2012-04-27 18:02:28 +0000
committerTomasz Zarna2012-04-27 18:02:28 +0000
commit9a44f1060a78d560859b9e7774a25703b8b6c3d2 (patch)
treea2805c53508540f1eaff0a75fbafd36eeaf3f7fe /bundles/org.eclipse.team.cvs.ui
parentd3879a9f2ac2f91c6ba9207e020e826ed76e6163 (diff)
downloadeclipse.platform.team-9a44f1060a78d560859b9e7774a25703b8b6c3d2.tar.gz
eclipse.platform.team-9a44f1060a78d560859b9e7774a25703b8b6c3d2.tar.xz
eclipse.platform.team-9a44f1060a78d560859b9e7774a25703b8b6c3d2.zip
Fix for returning missing Date tags.
Diffstat (limited to 'bundles/org.eclipse.team.cvs.ui')
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoryRoot.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoryRoot.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoryRoot.java
index 7b45f7106..c977ff8b7 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoryRoot.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoryRoot.java
@@ -683,7 +683,7 @@ public class RepositoryRoot extends PlatformObject {
* @return CVSTag[]
*/
public CVSTag[] getAllKnownTags(String remotePath) {
- Set tags = new HashSet();
+ Set tags = new HashSet(dateTags);
addAllKnownTagsForParents(getKnownParentTagCacheEntryFor(remotePath),
tags);
TagCacheEntry entry = getTagCacheEntryFor(remotePath, false);
@@ -694,7 +694,7 @@ public class RepositoryRoot extends PlatformObject {
}
public CVSTag[] getAllKnownTags() {
- Set tags = new HashSet();
+ Set tags = new HashSet(dateTags);
addAllKnownTagsForChildren(rootTagCacheEntry, tags);
return (CVSTag[]) tags.toArray(new CVSTag[tags.size()]);
}

Back to the top