Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAxel Richard2018-01-12 14:46:16 +0000
committerAxel Richard2018-01-12 14:47:40 +0000
commit7de860acac3eaf2320feef3ef5dda10b46a4b574 (patch)
tree8d7b66e87c7bccbe54641d1d90ffd6028ae04f0f
parent14a9b4fda0b8c0d18e5e46321d9a6a16a5f7fd88 (diff)
downloadeclipse.platform.debug-7de860acac3eaf2320feef3ef5dda10b46a4b574.tar.gz
eclipse.platform.debug-7de860acac3eaf2320feef3ef5dda10b46a4b574.tar.xz
eclipse.platform.debug-7de860acac3eaf2320feef3ef5dda10b46a4b574.zip
Bug 529738 - Fix PrototypeTab typoI20180115-2000
Change-Id: I75b273d895ba14505b43ac0e4c39918ee30c9794 Signed-off-by: Axel Richard <axel.richard@obeo.fr>
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/PrototypeTab.java (renamed from org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ProtoypeTab.java)8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ProtoypeTab.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/PrototypeTab.java
index f751a1bdd..97fae077f 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ProtoypeTab.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/PrototypeTab.java
@@ -78,7 +78,7 @@ import org.eclipse.ui.dialogs.ElementListSelectionDialog;
* @since 3.13
* @noextend This class is not intended to be subclassed by clients.
*/
-public class ProtoypeTab extends AbstractLaunchConfigurationTab {
+public class PrototypeTab extends AbstractLaunchConfigurationTab {
private static final String PROTOTYPE_TAB_ID = "org.eclipse.debug.ui.prototypeTab"; //$NON-NLS-1$
@@ -109,7 +109,7 @@ public class ProtoypeTab extends AbstractLaunchConfigurationTab {
/**
* Constructs a new tab with default context help.
*/
- public ProtoypeTab() {
+ public PrototypeTab() {
setHelpContextId(IDebugHelpContextIds.LAUNCH_CONFIGURATION_DIALOG_PROTOTYPE_TAB);
}
@@ -422,8 +422,8 @@ public class ProtoypeTab extends AbstractLaunchConfigurationTab {
* Initialize this tab with the given configuration.
*
* @param configuration the given configuration
- * @see ProtoypeTab#activated(ILaunchConfigurationWorkingCopy)
- * @see ProtoypeTab#initializeFrom(ILaunchConfiguration)
+ * @see PrototypeTab#activated(ILaunchConfigurationWorkingCopy)
+ * @see PrototypeTab#initializeFrom(ILaunchConfiguration)
*/
private void initialize(ILaunchConfiguration configuration) {
try {

Back to the top