1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-08 02:53:12 +02:00

Fix typo in previous commit.

This commit is contained in:
Ken Ryall 2007-10-19 20:44:46 +00:00
parent d8bdb2c2b3
commit 58150201b7

View file

@ -127,10 +127,8 @@ public class CDebugUIUtils {
valueString = CDebugUIMessages.getString( "CDTDebugModelPresentation.24" ); //$NON-NLS-1$ valueString = CDebugUIMessages.getString( "CDTDebugModelPresentation.24" ); //$NON-NLS-1$
label.append( valueString ); label.append( valueString );
} }
else if ( type == null ) { else if ( valueString.length() > 0 ) {
if ( valueString.length() > 0 ) {
label.append( valueString ); label.append( valueString );
}
} }
} }
} }