1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 00:45:28 +02:00

Fix change of version

Change-Id: I551ddb114350d18fbe81c4a6f14feb852f15323b
This commit is contained in:
Marc Khouzam 2016-08-24 10:35:50 -04:00
parent 215c3d7ce5
commit 6cbe4a6849
3 changed files with 5 additions and 2 deletions

View file

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.cdt.testsrunner;singleton:=true
Bundle-Version: 8.0.0.qualifier
Bundle-Version: 8.1.0.qualifier
Bundle-Activator: org.eclipse.cdt.testsrunner.internal.TestsRunnerPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin

View file

@ -11,7 +11,7 @@
<relativePath>../../pom.xml</relativePath>
</parent>
<version>8.0.0-SNAPSHOT</version>
<version>8.1.0-SNAPSHOT</version>
<artifactId>org.eclipse.cdt.testsrunner</artifactId>
<packaging>eclipse-plugin</packaging>
</project>

View file

@ -216,16 +216,19 @@ public class TestingSessionsManager implements ILaunchConfigurationListener {
}
}
/** @since 8.1 */
@Override
public void launchConfigurationAdded(ILaunchConfiguration configuration) {
// Ignore
}
/** @since 8.1 */
@Override
public void launchConfigurationChanged(ILaunchConfiguration configuration) {
// Ignore
}
/** @since 8.1 */
@Override
public void launchConfigurationRemoved(ILaunchConfiguration configuration) {
for (Iterator<TestingSession> iterator = sessions.iterator(); iterator.hasNext();) {