Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-04-17 05:33:20 +0000
committerAlexander Kurtakov2019-04-17 06:37:51 +0000
commiteaf7e086953a77a044e97cfb889e378f814a97eb (patch)
tree543b08fcc1b8e60281a1ba23d6b3ce51ad3ed3ab /bundles/org.eclipse.team.core
parent759da51e4b7f0d0d0e5b5bf5cb58cc1f67bf1817 (diff)
downloadeclipse.platform.team-eaf7e086953a77a044e97cfb889e378f814a97eb.tar.gz
eclipse.platform.team-eaf7e086953a77a044e97cfb889e378f814a97eb.tar.xz
eclipse.platform.team-eaf7e086953a77a044e97cfb889e378f814a97eb.zip
Remove useless non-javadoc/@see comments.
Put @Override instead where needed. Change-Id: Ib198807a342501579ed484a02e5231a4f06e5a59 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.team.core')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/variants/CachedResourceVariant.java3
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/ResourceVariantCacheEntry.java9
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/history/LocalFileRevision.java7
3 files changed, 6 insertions, 13 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/variants/CachedResourceVariant.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/variants/CachedResourceVariant.java
index 67ade9643..fb17d43e3 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/variants/CachedResourceVariant.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/variants/CachedResourceVariant.java
@@ -114,9 +114,6 @@ public abstract class CachedResourceVariant extends PlatformObject implements IR
}
}
- /* (non-Javadoc)
- * @see org.eclipse.team.core.variants.IResourceVariant#getStorage(org.eclipse.core.runtime.IProgressMonitor)
- */
@Override
public IStorage getStorage(IProgressMonitor monitor) throws TeamException {
if (isContainer()) return null;
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 3c7c6acab..ad4139615 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
@@ -57,9 +57,6 @@ public class ResourceVariantCacheEntry {
registerHit();
}
- /* (non-Javadoc)
- * @see org.eclipse.team.core.sync.ICacheEntry#getContents()
- */
public InputStream getContents() throws TeamException {
if (state != READY) return null;
registerHit();
@@ -168,14 +165,14 @@ public class ResourceVariantCacheEntry {
}
- /* (non-Javadoc)
+ /*
* @see org.eclipse.team.core.sync.ICacheEntry#getState()
*/
public int getState() {
return state;
}
- /* (non-Javadoc)
+ /*
* @see org.eclipse.team.core.sync.ICacheEntry#getSize()
*/
public long getSize() {
@@ -187,7 +184,7 @@ public class ResourceVariantCacheEntry {
return 0;
}
- /* (non-Javadoc)
+ /*
* @see org.eclipse.team.core.sync.ICacheEntry#getLastAccessTimeStamp()
*/
public long getLastAccessTimeStamp() {
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/history/LocalFileRevision.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/history/LocalFileRevision.java
index 2868f6524..dd212e8ea 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/history/LocalFileRevision.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/history/LocalFileRevision.java
@@ -117,10 +117,9 @@ public class LocalFileRevision extends FileRevision {
return state.getModificationTime();
}
- /* (non-Javadoc)
- * @see org.eclipse.team.core.history.provider.FileRevision#exists()
- * A LocalFileRevision generally should exist, but if it doesn't, this
- * method should tell the truth.
+ /*
+ * A LocalFileRevision generally should exist, but if it doesn't, this method
+ * should tell the truth.
*/
@Override
public boolean exists() {

Back to the top