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 361927 | Differences between
and this patch

Collapse All | Expand All

(-)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, 2006 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 341-346 Link Here
341
	 * Fetches tags from auto-refresh files.
341
	 * Fetches tags from auto-refresh files.
342
	 */
342
	 */
343
	public CVSTag[] refreshDefinedTags(ICVSFolder folder, boolean recurse, IProgressMonitor monitor) throws TeamException {
343
	public CVSTag[] refreshDefinedTags(ICVSFolder folder, boolean recurse, IProgressMonitor monitor) throws TeamException {
344
		monitor = Policy.monitorFor(monitor);
344
	    monitor.beginTask(null, 100);
345
	    monitor.beginTask(null, 100);
345
	    CVSTag[] tags = null;
346
	    CVSTag[] tags = null;
346
	    if (!recurse && !folder.getFolderSyncInfo().isVirtualDirectory()) {
347
	    if (!recurse && !folder.getFolderSyncInfo().isVirtualDirectory()) {

Return to bug 361927