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
|
protected String getVariableText( IVariable var ) throws DebugException
|
||||||
{
|
{
|
||||||
// temporary
|
|
||||||
String label = new String();
|
String label = new String();
|
||||||
if ( var != null )
|
if ( var != null )
|
||||||
{
|
{
|
||||||
|
@ -503,14 +502,6 @@ public class CDTDebugModelPresentation extends LabelProvider
|
||||||
IPath path = new Path( library.getFileName() );
|
IPath path = new Path( library.getFileName() );
|
||||||
if ( !path.isEmpty() )
|
if ( !path.isEmpty() )
|
||||||
label += ( qualified ? path.toOSString() : path.lastSegment() );
|
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;
|
return label;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue