Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2009-10-09 07:34:12 +0000
committerTomasz Zarna2009-10-09 07:34:12 +0000
commit773c2b09169820755799ca646f35dc1fbd06748e (patch)
tree90438f393f71e233a01c31e1ff4b911fcfdee333 /bundles/org.eclipse.team.core/src/org
parent9859e518b151c2fe9f649fc4f1c7657a1742d9f7 (diff)
downloadeclipse.platform.team-773c2b09169820755799ca646f35dc1fbd06748e.tar.gz
eclipse.platform.team-773c2b09169820755799ca646f35dc1fbd06748e.tar.xz
eclipse.platform.team-773c2b09169820755799ca646f35dc1fbd06748e.zip
Typos fixed.
Diffstat (limited to 'bundles/org.eclipse.team.core/src/org')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/ResourceVariantCacheEntry.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/ResourceVariantCacheEntry.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/ResourceVariantCacheEntry.java
index 16bc6d350..d549dc1c9 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/ResourceVariantCacheEntry.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/ResourceVariantCacheEntry.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2006 IBM Corporation and others.
+ * Copyright (c) 2000, 2009 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
@@ -80,7 +80,7 @@ public class ResourceVariantCacheEntry {
* the contents from the first write is used and the content from subsequent writes is ignored.
* @param stream an InputStream that provides the contents to be cached
* @param monitor a progress monitor
- * @throws TeamException if the entry is DISPOSED or an I/O error occurres
+ * @throws TeamException if the entry is DISPOSED or an I/O error occurred
*/
public void setContents(InputStream stream, IProgressMonitor monitor) throws TeamException {
// Use a lock to only allow one write at a time
@@ -184,7 +184,7 @@ public class ResourceVariantCacheEntry {
/**
* Registers a hit on this cache entry. This updates the last access timestamp.
- * Thsi method is intended to only be invokded from inside this class or the cahce itself.
+ * This method is intended to only be invoked from inside this class or the cache itself.
* Other clients should not use it.
*/
protected void registerHit() {
@@ -192,7 +192,7 @@ public class ResourceVariantCacheEntry {
}
public void dispose() {
- // Use a lock to avoid changing state while another thread may be writting
+ // Use a lock to avoid changing state while another thread may be writing
beginOperation();
try {
state = DISPOSED;

Back to the top