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

Collapse All | Expand All

(-)src/org/eclipse/team/internal/ccvs/ui/repo/RepositoryRoot.java (-1 / +6 lines)
Lines 450-456 Link Here
450
	 * the project is mapped to as the tag source (see TagSource)
450
	 * the project is mapped to as the tag source (see TagSource)
451
	 */
451
	 */
452
	private String getCachePathFor(String remotePath) {
452
	private String getCachePathFor(String remotePath) {
453
		return remotePath;
453
		String path = remotePath;
454
		if(path.indexOf('\\')>0)
455
			path = path.substring(0, path.indexOf('\\'));
456
		if(path.indexOf('/')>0)
457
			path = path.substring(0, path.indexOf('/'));
458
		return path;
454
	}
459
	}
455
	
460
	
456
	/**
461
	/**

Return to bug 339990