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/MIGDBSetDPrintfStyle.java')
-rw-r--r--dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIGDBSetDPrintfStyle.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIGDBSetDPrintfStyle.java b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIGDBSetDPrintfStyle.java
index b1341be7110..9b0b68d5ffd 100644
--- a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIGDBSetDPrintfStyle.java
+++ b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIGDBSetDPrintfStyle.java
@@ -18,27 +18,27 @@ import org.eclipse.cdt.dsf.debug.service.command.ICommandControlService.ICommand
/**
* -gdb-set dprintf-style STYLE
- *
- * Set the dprintf output to be handled in one of several different styles enumerated below.
- * A change of style affects all existing dynamic printfs immediately.
- *
+ *
+ * Set the dprintf output to be handled in one of several different styles enumerated below.
+ * A change of style affects all existing dynamic printfs immediately.
+ *
* gdb
* Handle the output using the gdb printf command.
* call
* Handle the output by calling a function in your program (normally printf).
* agent
- * Have the remote debugging agent (such as gdbserver) handle the output itself.
+ * Have the remote debugging agent (such as gdbserver) handle the output itself.
* This style is only available for agents that support running commands on the target.
- *
+ *
* @since 4.4
*/
public class MIGDBSetDPrintfStyle extends MIGDBSet {
- public static final String GDB_STYLE = "gdb"; //$NON-NLS-1$
- public static final String CALL_STYLE = "call"; //$NON-NLS-1$
+ public static final String GDB_STYLE = "gdb"; //$NON-NLS-1$
+ public static final String CALL_STYLE = "call"; //$NON-NLS-1$
public static final String AGENT_STYLE = "agent"; //$NON-NLS-1$
public MIGDBSetDPrintfStyle(ICommandControlDMContext dmc, String style) {
super(dmc, new String[] { "dprintf-style", style }); //$NON-NLS-1$
- }
+ }
}

Back to the top