Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikhail Khodjaiants2005-09-06 20:19:08 +0000
committerMikhail Khodjaiants2005-09-06 20:19:08 +0000
commit34411d80e6205dd3de0b83b92e673f90400fa201 (patch)
tree42892246a00dd8d9f4ac9e9cdd6438cf3948c176 /debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse
parentdb189e593524909c362a42023fc1ade5f58ee98d (diff)
downloadorg.eclipse.cdt-34411d80e6205dd3de0b83b92e673f90400fa201.tar.gz
org.eclipse.cdt-34411d80e6205dd3de0b83b92e673f90400fa201.tar.xz
org.eclipse.cdt-34411d80e6205dd3de0b83b92e673f90400fa201.zip
Cleanup: replaced "new Boolean" by the static Boolean objects (Java 1.4).
Diffstat (limited to 'debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse')
-rw-r--r--debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/GDBSolibBlock.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/GDBSolibBlock.java b/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/GDBSolibBlock.java
index 9008a041fba..5317abc10e1 100644
--- a/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/GDBSolibBlock.java
+++ b/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/GDBSolibBlock.java
@@ -115,9 +115,9 @@ public class GDBSolibBlock extends Observable implements IMILaunchConfigurationC
try {
Map attrs = configuration.getAttributes();
if ( fAutoSoLibButton != null )
- attrs.put( IMILaunchConfigurationConstants.ATTR_DEBUGGER_AUTO_SOLIB, new Boolean( fAutoSoLibButton.getSelection() ) );
+ attrs.put( IMILaunchConfigurationConstants.ATTR_DEBUGGER_AUTO_SOLIB, Boolean.valueOf( fAutoSoLibButton.getSelection() ) );
if ( fStopOnSolibEventsButton != null )
- attrs.put( IMILaunchConfigurationConstants.ATTR_DEBUGGER_STOP_ON_SOLIB_EVENTS, new Boolean( fStopOnSolibEventsButton.getSelection() ) );
+ attrs.put( IMILaunchConfigurationConstants.ATTR_DEBUGGER_STOP_ON_SOLIB_EVENTS, Boolean.valueOf( fStopOnSolibEventsButton.getSelection() ) );
configuration.setAttributes( attrs );
}
catch( CoreException e ) {

Back to the top