Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2015-03-04 10:59:47 +0000
committerDani Megert2015-03-04 10:59:47 +0000
commitdf51aad3bdc4c4e8072d517ed125b2fc74872214 (patch)
tree6257b5ead1eed2dc4ef1f67c075e7610c0d7a2af
parent0764b2775696c00ef972e7f352df17dab582baf8 (diff)
downloadeclipse.platform.resources-df51aad3bdc4c4e8072d517ed125b2fc74872214.tar.gz
eclipse.platform.resources-df51aad3bdc4c4e8072d517ed125b2fc74872214.tar.xz
eclipse.platform.resources-df51aad3bdc4c4e8072d517ed125b2fc74872214.zip
Added missing @since tag and updated bundle version
-rw-r--r--bundles/org.eclipse.core.filesystem/META-INF/MANIFEST.MF2
-rw-r--r--bundles/org.eclipse.core.filesystem/pom.xml4
-rw-r--r--bundles/org.eclipse.core.filesystem/src/org/eclipse/core/filesystem/provider/FileInfo.java5
3 files changed, 5 insertions, 6 deletions
diff --git a/bundles/org.eclipse.core.filesystem/META-INF/MANIFEST.MF b/bundles/org.eclipse.core.filesystem/META-INF/MANIFEST.MF
index 8835fef13..db880d29d 100644
--- a/bundles/org.eclipse.core.filesystem/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.core.filesystem/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.core.filesystem; singleton:=true
-Bundle-Version: 1.4.200.qualifier
+Bundle-Version: 1.5.0.qualifier
Bundle-Localization: plugin
Require-Bundle: org.eclipse.equinox.common;bundle-version="[3.2.0,4.0.0)",
org.eclipse.equinox.registry;bundle-version="[3.2.0,4.0.0)",
diff --git a/bundles/org.eclipse.core.filesystem/pom.xml b/bundles/org.eclipse.core.filesystem/pom.xml
index 779786dc1..c46566839 100644
--- a/bundles/org.eclipse.core.filesystem/pom.xml
+++ b/bundles/org.eclipse.core.filesystem/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2014 Eclipse Foundation and others.
+ Copyright (c) 2012, 2015 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -19,6 +19,6 @@
</parent>
<groupId>org.eclipse.core</groupId>
<artifactId>org.eclipse.core.filesystem</artifactId>
- <version>1.4.200-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
diff --git a/bundles/org.eclipse.core.filesystem/src/org/eclipse/core/filesystem/provider/FileInfo.java b/bundles/org.eclipse.core.filesystem/src/org/eclipse/core/filesystem/provider/FileInfo.java
index 0fa1c8353..1f40dfb16 100644
--- a/bundles/org.eclipse.core.filesystem/src/org/eclipse/core/filesystem/provider/FileInfo.java
+++ b/bundles/org.eclipse.core.filesystem/src/org/eclipse/core/filesystem/provider/FileInfo.java
@@ -101,9 +101,8 @@ public class FileInfo implements IFileInfo {
}
}
- /*
- * (non-Javadoc)
- * @see java.lang.Comparable#compareTo(java.lang.Object)
+ /**
+ * @since 1.5
*/
@Override
public int compareTo(IFileInfo o) {

Back to the top