Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 363157
Collapse All | Expand All

(-)a/bundles/org.eclipse.team.cvs.ui/META-INF/MANIFEST.MF (-1 / +1 lines)
Lines 2-8 Link Here
2
Bundle-ManifestVersion: 2
2
Bundle-ManifestVersion: 2
3
Bundle-Name: %pluginName
3
Bundle-Name: %pluginName
4
Bundle-SymbolicName: org.eclipse.team.cvs.ui; singleton:=true
4
Bundle-SymbolicName: org.eclipse.team.cvs.ui; singleton:=true
5
Bundle-Version: 3.3.302.qualifier
5
Bundle-Version: 3.3.303.qualifier
6
Bundle-Activator: org.eclipse.team.internal.ccvs.ui.CVSUIPlugin
6
Bundle-Activator: org.eclipse.team.internal.ccvs.ui.CVSUIPlugin
7
Bundle-Vendor: %providerName
7
Bundle-Vendor: %providerName
8
Bundle-Localization: plugin
8
Bundle-Localization: plugin
(-)a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoryRoot.java (-1 / +2 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2009 IBM Corporation and others.
2
 * Copyright (c) 2000, 2011 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 334-339 Link Here
334
	 * Fetches tags from auto-refresh files.
334
	 * Fetches tags from auto-refresh files.
335
	 */
335
	 */
336
	public CVSTag[] refreshDefinedTags(ICVSFolder folder, boolean recurse, IProgressMonitor monitor) throws TeamException {
336
	public CVSTag[] refreshDefinedTags(ICVSFolder folder, boolean recurse, IProgressMonitor monitor) throws TeamException {
337
		monitor = Policy.monitorFor(monitor);
337
	    monitor.beginTask(null, 100);
338
	    monitor.beginTask(null, 100);
338
	    CVSTag[] tags = null;
339
	    CVSTag[] tags = null;
339
	    if (!recurse && !folder.getFolderSyncInfo().isVirtualDirectory()) {
340
	    if (!recurse && !folder.getFolderSyncInfo().isVirtualDirectory()) {

Return to bug 363157