Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2011-02-15 10:00:21 +0000
committerTomasz Zarna2011-02-15 10:00:21 +0000
commite219d855895c2745ceddcb2fd2fb5020669ad855 (patch)
treea25ec76ad3c46edfef8332f2d6eee6233c0a765f /bundles/org.eclipse.team.core/src
parent35fed02fd4f31f676e66605f385fa895e75f9d25 (diff)
downloadeclipse.platform.team-e219d855895c2745ceddcb2fd2fb5020669ad855.tar.gz
eclipse.platform.team-e219d855895c2745ceddcb2fd2fb5020669ad855.tar.xz
eclipse.platform.team-e219d855895c2745ceddcb2fd2fb5020669ad855.zip
bug 76386: [History View] CVS Resource History shows revisions from all branches -- reverted, legal approval required
Diffstat (limited to 'bundles/org.eclipse.team.core/src')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/IFileRevision.java12
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/provider/FileRevision.java13
2 files changed, 3 insertions, 22 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/IFileRevision.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/IFileRevision.java
index 90ec86f60..95e2a298c 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/IFileRevision.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/IFileRevision.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2011 IBM Corporation and others.
+ * Copyright (c) 2000, 2008 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
@@ -7,7 +7,6 @@
*
* Contributors:
* IBM Corporation - initial API and implementation
- * Olexiy Buyanskyy <olexiyb@gmail.com> - Bug 76386 - [History View] CVS Resource History shows revisions from all branches
*******************************************************************************/
package org.eclipse.team.core.history;
@@ -96,15 +95,6 @@ public interface IFileRevision {
public String getComment();
/**
- * Returns the branches names of file revision.
- *
- * @return an array of ITag's if branch names exist for this revision or an
- * empty ITag array if no names exist
- * @since 3.6
- */
- public ITag[] getBranches();
-
- /**
* Returns the set of tags available for this file revision.
*
* @return an array of ITag's if ITags exist for this revision or an empty ITag array
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/provider/FileRevision.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/provider/FileRevision.java
index fc8a8015a..054b1ad83 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/provider/FileRevision.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/provider/FileRevision.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2011 IBM Corporation and others.
+ * Copyright (c) 2000, 2007 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
@@ -7,7 +7,6 @@
*
* Contributors:
* IBM Corporation - initial API and implementation
- * Olexiy Buyanskyy <olexiyb@gmail.com> - Bug 76386 - [History View] CVS Resource History shows revisions from all branches
*******************************************************************************/
package org.eclipse.team.core.history.provider;
@@ -132,15 +131,7 @@ public abstract class FileRevision implements IFileRevision {
public String getComment() {
return null;
}
-
- /**
- * {@inheritDoc}
- * @since 3.6
- */
- public ITag[] getBranches() {
- return new ITag[0];
- }
-
+
/* (non-Javadoc)
* @see org.eclipse.team.core.history.IFileRevision#getTags()
*/

Back to the top