mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
Cleanup.
This commit is contained in:
parent
21564c5259
commit
4ea2c26883
1 changed files with 0 additions and 9 deletions
|
@ -479,7 +479,6 @@ public class CDTDebugModelPresentation extends LabelProvider
|
|||
|
||||
protected String getVariableText( IVariable var ) throws DebugException
|
||||
{
|
||||
// temporary
|
||||
String label = new String();
|
||||
if ( var != null )
|
||||
{
|
||||
|
@ -503,14 +502,6 @@ public class CDTDebugModelPresentation extends LabelProvider
|
|||
IPath path = new Path( library.getFileName() );
|
||||
if ( !path.isEmpty() )
|
||||
label += ( qualified ? path.toOSString() : path.lastSegment() );
|
||||
/*
|
||||
String startAddress = ( library.getStartAddress() > 0 ) ?
|
||||
CDebugUtils.toHexAddressString( library.getStartAddress() ) : "Not available";
|
||||
String endAddress = ( library.getEndAddress() > 0 ) ?
|
||||
CDebugUtils.toHexAddressString( library.getEndAddress() ) : "Not available";
|
||||
return label + MessageFormat.format( " (Start address: ''{0}'' End address: ''{1}'')",
|
||||
new String[] { startAddress, endAddress } );
|
||||
*/
|
||||
return label;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue