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:
parent
5d4aede23e
commit
096cfcf47d
1 changed files with 3 additions and 3 deletions
|
@ -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$
|
||||
|
|
Loading…
Add table
Reference in a new issue