Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2005-08-05 15:58:57 +0000
committerDarin Wright2005-08-05 15:58:57 +0000
commit14470073fafec9a2ca8fb7e8f221fb2e1e25083f (patch)
tree29da69739c2acb79ee6a226d83f65b6fce46fa6b /org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/SourceLookupDialog.java
parenta5ce3fddca1d1a44014433923c23e8cdf6377e73 (diff)
downloadeclipse.platform.debug-14470073fafec9a2ca8fb7e8f221fb2e1e25083f.tar.gz
eclipse.platform.debug-14470073fafec9a2ca8fb7e8f221fb2e1e25083f.tar.xz
eclipse.platform.debug-14470073fafec9a2ca8fb7e8f221fb2e1e25083f.zip
Bug 106178 - Remove uneccessary NLS tags
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/SourceLookupDialog.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/SourceLookupDialog.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/SourceLookupDialog.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/SourceLookupDialog.java
index 2b2219c05..53ca7e9a1 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/SourceLookupDialog.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/sourcelookup/SourceLookupDialog.java
@@ -64,7 +64,7 @@ public class SourceLookupDialog extends TitleAreaDialog {
*/
protected Control createDialogArea(Composite parent) {
// create a composite with standard margins and spacing
- setTitle(SourceLookupUIMessages.manageSourceDialog_description); //$NON-NLS-1$
+ setTitle(SourceLookupUIMessages.manageSourceDialog_description);
setTitleImage(DebugPluginImages.getImage(IInternalDebugUIConstants.IMG_EDIT_SRC_LOC_WIZ));
Composite composite = new Composite(parent, SWT.NONE);
@@ -105,7 +105,7 @@ public class SourceLookupDialog extends TitleAreaDialog {
*/
protected void configureShell(Shell shell) {
super.configureShell(shell);
- shell.setText(SourceLookupUIMessages.manageSourceDialog_title); //$NON-NLS-1$
+ shell.setText(SourceLookupUIMessages.manageSourceDialog_title);
}
/* (non-Javadoc)

Back to the top