Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Hammer2019-05-21 17:32:59 +0000
committerAlexander Kurtakov2019-06-10 19:26:24 +0000
commit20b4e2973008b4b287241fc14a1eb4f8ee9ee0ad (patch)
treebb2d200827a873cafdd84ef7d0af0921010fd4df /features
parentac20bd173d9d6703a6a4ed50b8ede54cbe89af13 (diff)
downloadrt.equinox.p2-20b4e2973008b4b287241fc14a1eb4f8ee9ee0ad.tar.gz
rt.equinox.p2-20b4e2973008b4b287241fc14a1eb4f8ee9ee0ad.tar.xz
rt.equinox.p2-20b4e2973008b4b287241fc14a1eb4f8ee9ee0ad.zip
Remove unnecessary type specifications
Since Java 7 the diamond operator can be used instead of explicit type parameters. Change-Id: I1f4692522a6ed6429f79eea1d898f0cc4a84131a Signed-off-by: Carsten Hammer <carsten.hammer@t-online.de>
Diffstat (limited to 'features')
-rw-r--r--features/org.eclipse.equinox.p2.discovery.feature/feature.xml2
-rw-r--r--features/org.eclipse.equinox.p2.discovery.feature/pom.xml4
2 files changed, 3 insertions, 3 deletions
diff --git a/features/org.eclipse.equinox.p2.discovery.feature/feature.xml b/features/org.eclipse.equinox.p2.discovery.feature/feature.xml
index a992c2d0b..ec46743f0 100644
--- a/features/org.eclipse.equinox.p2.discovery.feature/feature.xml
+++ b/features/org.eclipse.equinox.p2.discovery.feature/feature.xml
@@ -2,7 +2,7 @@
<feature
id="org.eclipse.equinox.p2.discovery.feature"
label="%featureName"
- version="1.2.200.qualifier"
+ version="1.2.300.qualifier"
provider-name="%providerName"
license-feature="org.eclipse.license"
license-feature-version="0.0.0">
diff --git a/features/org.eclipse.equinox.p2.discovery.feature/pom.xml b/features/org.eclipse.equinox.p2.discovery.feature/pom.xml
index f12c56266..4d4d01ee9 100644
--- a/features/org.eclipse.equinox.p2.discovery.feature/pom.xml
+++ b/features/org.eclipse.equinox.p2.discovery.feature/pom.xml
@@ -5,7 +5,7 @@
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/org/documents/edl-v10.php
-
+
Contributors:
Igor Fedorenko - initial implementation
-->
@@ -19,7 +19,7 @@
</parent>
<groupId>org.eclipse.equinox</groupId>
<artifactId>org.eclipse.equinox.p2.discovery.feature</artifactId>
- <version>1.2.200-SNAPSHOT</version>
+ <version>1.2.300-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
<build>

Back to the top