Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDean Roberts2003-03-10 21:25:35 +0000
committerDean Roberts2003-03-10 21:25:35 +0000
commitbaece580e980c3e861300ea5cbf40fb1eb8a060e (patch)
tree553685131c7d2e52cf7dcc1829e312776634e5a9 /bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoryRoot.java
parent6408947b01f03364a98006e6863f78d24beeeaa7 (diff)
downloadeclipse.platform.team-baece580e980c3e861300ea5cbf40fb1eb8a060e.tar.gz
eclipse.platform.team-baece580e980c3e861300ea5cbf40fb1eb8a060e.tar.xz
eclipse.platform.team-baece580e980c3e861300ea5cbf40fb1eb8a060e.zip
Fix copyrights - automated changes
Diffstat (limited to 'bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoryRoot.java')
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoryRoot.java22
1 files changed, 14 insertions, 8 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 dddaeebcc..27aafc036 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
@@ -1,13 +1,13 @@
/*******************************************************************************
- * Copyright (c) 2002 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v0.5
+ * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v05.html
+ * http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
- * IBM - Initial implementation
- ******************************************************************************/
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
package org.eclipse.team.internal.ccvs.ui.repo;
import java.io.IOException;
@@ -193,7 +193,10 @@ public class RepositoryRoot extends PlatformObject {
}
/**
- * Remove the given tags from the receiver * @param remotePath * @param tags */
+ * Remove the given tags from the receiver
+ * @param remotePath
+ * @param tags
+ */
public void removeTags(String remotePath, CVSTag[] tags) {
// Get the name to cache the version tags with
String name = getCachePathFor(remotePath);
@@ -324,7 +327,10 @@ public class RepositoryRoot extends PlatformObject {
/**
* Write out the state of the receiver as XML on the given XMLWriter.
- * * @param writer * @throws IOException */
+ *
+ * @param writer
+ * @throws IOException
+ */
public void writeState(XMLWriter writer) throws IOException {
HashMap attributes = new HashMap();

Back to the top