Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/CLIShowEndian.java')
-rw-r--r--dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/CLIShowEndian.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/CLIShowEndian.java b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/CLIShowEndian.java
index f46c87c2d3f..0df178fef36 100644
--- a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/CLIShowEndian.java
+++ b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/CLIShowEndian.java
@@ -10,7 +10,7 @@
*
* Contributors:
* Mentor Graphics - Initial API and implementation
- * John Dallaway - Add methods to get the endianness and address size (Bug 225609)
+ * John Dallaway - Add methods to get the endianness and address size (Bug 225609)
*******************************************************************************/
package org.eclipse.cdt.dsf.mi.service.command.commands;
@@ -21,12 +21,12 @@ import org.eclipse.cdt.dsf.mi.service.command.output.MIOutput;
/**
* Returns the endianness of the current GDB target.
- *
+ *
* @since 4.2
*/
public class CLIShowEndian extends MIInterpreterExecConsole<CLIShowEndianInfo> {
- private static final String SHOW_ENDIAN = "show endian"; //$NON-NLS-1$
+ private static final String SHOW_ENDIAN = "show endian"; //$NON-NLS-1$
public CLIShowEndian(IMemoryDMContext ctx) {
super(ctx, SHOW_ENDIAN);

Back to the top