Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.tests/src/org/eclipse/debug/tests/launching/AcceleratorSubstitutionTests.java')
-rw-r--r--org.eclipse.debug.tests/src/org/eclipse/debug/tests/launching/AcceleratorSubstitutionTests.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.debug.tests/src/org/eclipse/debug/tests/launching/AcceleratorSubstitutionTests.java b/org.eclipse.debug.tests/src/org/eclipse/debug/tests/launching/AcceleratorSubstitutionTests.java
index bb59c7740..edb3091a9 100644
--- a/org.eclipse.debug.tests/src/org/eclipse/debug/tests/launching/AcceleratorSubstitutionTests.java
+++ b/org.eclipse.debug.tests/src/org/eclipse/debug/tests/launching/AcceleratorSubstitutionTests.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -17,7 +17,7 @@ import org.eclipse.debug.internal.ui.DebugUIPlugin;
/**
* Tests accelerator adjustments for DBCS languages.
* See bug 186921.
- *
+ *
* @since 3.3
*/
public class AcceleratorSubstitutionTests extends TestCase {
@@ -29,7 +29,7 @@ public class AcceleratorSubstitutionTests extends TestCase {
public AcceleratorSubstitutionTests(String name) {
super(name);
}
-
+
/**
* tests a string with "..."
*/
@@ -38,7 +38,7 @@ public class AcceleratorSubstitutionTests extends TestCase {
"Open Run Dialog(&R)...", //$NON-NLS-1$
DebugUIPlugin.adjustDBCSAccelerator("Open Run(&R) Dialog...")); //$NON-NLS-1$
}
-
+
/**
* tests a string without "..."
*/
@@ -46,8 +46,8 @@ public class AcceleratorSubstitutionTests extends TestCase {
assertEquals("incorrect DBCS accelerator substitution", //$NON-NLS-1$
"Open Run Dialog(&R)", //$NON-NLS-1$
DebugUIPlugin.adjustDBCSAccelerator("Open Run(&R) Dialog")); //$NON-NLS-1$
- }
-
+ }
+
/**
* tests a string that should not change (no DBCS style accelerator).
*/
@@ -55,5 +55,5 @@ public class AcceleratorSubstitutionTests extends TestCase {
assertEquals("incorrect DBCS accelerator substitution", //$NON-NLS-1$
"Open &Run Dialog...", //$NON-NLS-1$
DebugUIPlugin.adjustDBCSAccelerator("Open &Run Dialog...")); //$NON-NLS-1$
- }
+ }
}

Back to the top