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/MIFileExecAndSymbols.java')
-rw-r--r--dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIFileExecAndSymbols.java21
1 files changed, 10 insertions, 11 deletions
diff --git a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIFileExecAndSymbols.java b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIFileExecAndSymbols.java
index 1b58327828d..3757f11313d 100644
--- a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIFileExecAndSymbols.java
+++ b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIFileExecAndSymbols.java
@@ -20,22 +20,21 @@ import org.eclipse.cdt.dsf.mi.service.command.output.MIInfo;
/**
* -file-exec-and-symbols [FILE]
- *
+ *
* Specify the executable file to be debugged. This file is the one from which
* the symbol table is also read. If no file is specified, the command clears
* the executable and symbol information. If breakpoints are set when using this
* command with no arguments, gdb will produce error messages. Otherwise, no
* output is produced, except a completion notification.
*/
-public class MIFileExecAndSymbols extends MICommand<MIInfo>
-{
- /** @since 4.0 */
- public MIFileExecAndSymbols(IMIContainerDMContext dmc) {
- this(dmc, null);
- }
+public class MIFileExecAndSymbols extends MICommand<MIInfo> {
+ /** @since 4.0 */
+ public MIFileExecAndSymbols(IMIContainerDMContext dmc) {
+ this(dmc, null);
+ }
- /** @since 4.0 */
- public MIFileExecAndSymbols(IMIContainerDMContext dmc, String file) {
- super(dmc, "-file-exec-and-symbols", null, file == null ? null : new String[] {file}); //$NON-NLS-1$
- }
+ /** @since 4.0 */
+ public MIFileExecAndSymbols(IMIContainerDMContext dmc, String file) {
+ super(dmc, "-file-exec-and-symbols", null, file == null ? null : new String[] { file }); //$NON-NLS-1$
+ }
}

Back to the top