1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

[252068] - Removed the NON-NLS comment from strings that should be externalized.

This commit is contained in:
Pawel Piech 2008-10-24 21:10:59 +00:00
parent 5d4aede23e
commit 096cfcf47d

View file

@ -71,7 +71,7 @@ public class GdbLaunchDelegate extends LaunchConfigurationDelegate
}
private void launchDebugger( ILaunchConfiguration config, ILaunch launch, IProgressMonitor monitor ) throws CoreException {
monitor.beginTask("Launching debugger session", 10); //$NON-NLS-1$
monitor.beginTask("Launching debugger session", 10);
if ( monitor.isCanceled() ) {
return;
}
@ -95,9 +95,9 @@ public class GdbLaunchDelegate extends LaunchConfigurationDelegate
final GdbLaunch launch = (GdbLaunch)l;
if (sessionType == SessionType.REMOTE) {
monitor.subTask( "Debugging remote C/C++ application" ); //$NON-NLS-1$
monitor.subTask( "Debugging remote C/C++ application" );
} else {
monitor.subTask( "Debugging local C/C++ application" ); //$NON-NLS-1$
monitor.subTask( "Debugging local C/C++ application" );
}
IPath exePath = new Path(""); //$NON-NLS-1$