commit | 75085f67a7bf4b8f2556cac7be4ee1b6d2a57ad9 | [log] [tgz] |
---|---|---|
author | Stephan Herrmann <stephan@cs.tu-berlin.de> | Sun Nov 28 02:10:05 2010 +0000 |
committer | Stephan Herrmann <stephan@cs.tu-berlin.de> | Sun Nov 28 02:10:05 2010 +0000 |
tree | 371ece8432204df7824c023481b09be74cb302bd | |
parent | 6804866ed41bb4ba579e330aaab598779aa706d4 [diff] |
API consolidation for org.eclipse.objectteams.otdt.debug - redefine the line between API and non-API - add javadoc to API - removed some unused stuff Also: - implemented clearing the TeamView when a launch terminates - removed redundant sort mode "activation order"
diff --git a/plugins/org.eclipse.objectteams.otdt.debug.adaptor/src/org/eclipse/objectteams/otdt/internal/debug/adaptor/launching/OTLaunchConfigurationTab.java b/plugins/org.eclipse.objectteams.otdt.debug.adaptor/src/org/eclipse/objectteams/otdt/internal/debug/adaptor/launching/OTLaunchConfigurationTab.java index a06fb1d..a0b5719 100644 --- a/plugins/org.eclipse.objectteams.otdt.debug.adaptor/src/org/eclipse/objectteams/otdt/internal/debug/adaptor/launching/OTLaunchConfigurationTab.java +++ b/plugins/org.eclipse.objectteams.otdt.debug.adaptor/src/org/eclipse/objectteams/otdt/internal/debug/adaptor/launching/OTLaunchConfigurationTab.java
@@ -82,7 +82,7 @@ List<String> teamHandles = new LinkedList<String>(); boolean teamsActive = true; try { - teamHandles = configuration.getAttribute(IOTLaunchConstants.ATTR_TEAMCONFIG_LIST, teamHandles); + teamHandles = configuration.getAttribute(IOTLaunchConstants.ATTR_TEAMCONFIG_LIST, teamHandles); teamsActive = configuration.getAttribute(IOTLaunchConstants.ATTR_TEAMCONFIG_ACTIVE, true); } catch (CoreException ce) { OTDTUIPlugin.logException("Cannot read team configuration", ce); //$NON-NLS-1$