[3.0.2] Bug 79849 - DBCS: "Exception" should not be translated [3.0.2 candidate]
diff --git a/org.eclipse.jdt.debug.ui/plugin.xml b/org.eclipse.jdt.debug.ui/plugin.xml
index b9b8d53..65a13db 100644
--- a/org.eclipse.jdt.debug.ui/plugin.xml
+++ b/org.eclipse.jdt.debug.ui/plugin.xml
@@ -3,7 +3,7 @@
 <plugin
    id="org.eclipse.jdt.debug.ui"
    name="%pluginName"
-   version="3.0.1.1"
+   version="3.0.2"
    provider-name="%providerName"
    class="org.eclipse.jdt.internal.debug.ui.JDIDebugUIPlugin">
 
diff --git a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/breakpoints/AddExceptionDialog.java b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/breakpoints/AddExceptionDialog.java
index 81d5bf6..12bc433 100644
--- a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/breakpoints/AddExceptionDialog.java
+++ b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/breakpoints/AddExceptionDialog.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * Copyright (c) 2000, 2004 IBM Corporation and others.
  * All rights reserved. This program and the accompanying materials 
  * are made available under the terms of the Common Public License v1.0
  * which accompanies this distribution, and is available at
@@ -74,15 +74,9 @@
 	private static final String SETTING_CAUGHT_CHECKED= "caughtChecked"; //$NON-NLS-1$
 	private static final String SETTING_UNCAUGHT_CHECKED= "uncaughtChecked"; //$NON-NLS-1$
 	
-	/**
-	 * @param parent
-	 * @param context
-	 * @param elementKinds
-	 * @param scope
-	 */
 	public AddExceptionDialog(Shell parent, IRunnableContext context) {
 		super(parent, context, IJavaSearchConstants.CLASS, SearchEngine.createWorkspaceScope());
-		setFilter(BreakpointMessages.getString("AddExceptionDialog.14")); //$NON-NLS-1$
+		setFilter("*Exception*"); //$NON-NLS-1$
 	}
 
 	/*
diff --git a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/breakpoints/BreakpointMessages.properties b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/breakpoints/BreakpointMessages.properties
index af92a4b..fd67587 100644
--- a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/breakpoints/BreakpointMessages.properties
+++ b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/breakpoints/BreakpointMessages.properties
@@ -12,7 +12,6 @@
 AddExceptionAction.0=Add Java Exception Breakpoint
 AddExceptionAction.1=Choose an e&xception (? = any character, * = any string)
 
-AddExceptionDialog.14=*Exception*
 AddExceptionDialog.15=&Caught
 AddExceptionDialog.16=&Uncaught
 AddExceptionDialog.17=Selected type is not a subclass of java.lang.Throwable