diff options
author | Stephan Herrmann | 2010-04-22 13:57:16 +0000 |
---|---|---|
committer | Stephan Herrmann | 2010-04-22 13:57:16 +0000 |
commit | 6cd4f69e8a0949d33c9bb5f18ddd872cbf30c967 (patch) | |
tree | 5a4be142787c6a2979f78c10ab8bd99cdebee46f /testplugins/org.eclipse.objectteams.otdt.debug.tests | |
parent | c4dde2e407ea8f4a0cc4683e041fc3572c364247 (diff) | |
download | org.eclipse.objectteams-6cd4f69e8a0949d33c9bb5f18ddd872cbf30c967.tar.gz org.eclipse.objectteams-6cd4f69e8a0949d33c9bb5f18ddd872cbf30c967.tar.xz org.eclipse.objectteams-6cd4f69e8a0949d33c9bb5f18ddd872cbf30c967.zip |
fix qualified names:
- fix a typo after refactoring
- remove obsolete launch configuration type
Diffstat (limited to 'testplugins/org.eclipse.objectteams.otdt.debug.tests')
2 files changed, 5 insertions, 5 deletions
diff --git a/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/DebugTestsPlugin.java b/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/DebugTestsPlugin.java index 61195e69f..4f5a27730 100644 --- a/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/DebugTestsPlugin.java +++ b/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/DebugTestsPlugin.java @@ -68,7 +68,7 @@ public class DebugTestsPlugin extends AbstractUIPlugin { protected String getPluginID()
{
- return "org.eclispe.objectteams.otdt.debug.tests";
+ return "org.eclipse.objectteams.otdt.debug.tests";
}
/**
diff --git a/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/OTProjectCreationDecorator.java b/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/OTProjectCreationDecorator.java index 88f53df56..b700ece19 100644 --- a/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/OTProjectCreationDecorator.java +++ b/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/OTProjectCreationDecorator.java @@ -150,10 +150,10 @@ public class OTProjectCreationDecorator extends AbstractOTDTDebugTest { // this one used by StratumTests:
createLaunchConfiguration("Breakpoints");
//{ObjectTeams: own tests:
- createLaunchConfiguration("rofitests.RoFiTeam", OTDebugPlugin.OT_LAUNCH_CONFIGURATION_TYPE);
- createLaunchConfiguration("copyinheritancetests.SubTeam", OTDebugPlugin.OT_LAUNCH_CONFIGURATION_TYPE);
- createLaunchConfiguration("copyinheritancetests.SubTeam2", OTDebugPlugin.OT_LAUNCH_CONFIGURATION_TYPE);
- createLaunchConfiguration("copyinheritancetests.SubTeam3", OTDebugPlugin.OT_LAUNCH_CONFIGURATION_TYPE);
+ createLaunchConfiguration("rofitests.RoFiTeam");
+ createLaunchConfiguration("copyinheritancetests.SubTeam");
+ createLaunchConfiguration("copyinheritancetests.SubTeam2");
+ createLaunchConfiguration("copyinheritancetests.SubTeam3");
// SH}
}
|