Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/command/MIGDBSetEnvironment.java')
-rw-r--r--debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/command/MIGDBSetEnvironment.java53
1 files changed, 0 insertions, 53 deletions
diff --git a/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/command/MIGDBSetEnvironment.java b/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/command/MIGDBSetEnvironment.java
deleted file mode 100644
index fd10b8c5302..00000000000
--- a/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/command/MIGDBSetEnvironment.java
+++ /dev/null
@@ -1,53 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2012 QNX Software Systems and others.
- * All rights reserved. This program and the accompanying materials
- * 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:
- * QNX Software Systems - Initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.cdt.debug.mi.core.command;
-
-/**
- *
- * -gdb-set
- *
- * Set an internal GDB variable.
- *
- */
-public class MIGDBSetEnvironment extends MIGDBSet {
-
- public MIGDBSetEnvironment(String miVersion, String[] paths) {
- super(miVersion, paths);
- // Overload the parameter
- String[] newPaths = new String[paths.length + 1];
- newPaths[0] = "environment"; //$NON-NLS-1$
- System.arraycopy(paths, 0, newPaths, 1, paths.length);
- setParameters(newPaths);
- }
-
- /**
- * According to the help.:
- * Set environment variable value to give the program.
- * Arguments are VAR VALUE where VAR is variable name and VALUE is value.
- * VALUES of environment variables are uninterpreted strings.
- * This does not affect the program until the next "run" command.
- *
- * So pass the strings raw without interpretation.
- */
- @Override
- protected String parametersToString() {
- String[] parameters = getParameters();
- StringBuffer buffer = new StringBuffer();
- if (parameters != null) {
- for (int i = 0; i < parameters.length; i++) {
- buffer.append(' ').append(parameters[i]);
- }
- }
- return buffer.toString().trim();
- }
-
-}

Back to the top