Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2019-06-25 06:48:08 +0000
committerAndrey Loskutov2019-06-25 06:48:08 +0000
commitaec1476ad5841a388ad9df1df307f7469f183ca8 (patch)
treed26a13c0f0995a95329cadf9b3a92b3be3672a4a
parent7bc5d7334f889b1aaea53377dede6053e6777df8 (diff)
downloadeclipse.platform.debug-aec1476ad5841a388ad9df1df307f7469f183ca8.tar.gz
eclipse.platform.debug-aec1476ad5841a388ad9df1df307f7469f183ca8.tar.xz
eclipse.platform.debug-aec1476ad5841a388ad9df1df307f7469f183ca8.zip
Change-Id: Ib9bfd15e7f3a060148315380db2ee22c6e397468 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/EnvironmentTab.java10
1 files changed, 4 insertions, 6 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/EnvironmentTab.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/EnvironmentTab.java
index 28c6bf347..4c112ad4b 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/EnvironmentTab.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/EnvironmentTab.java
@@ -570,12 +570,10 @@ public class EnvironmentTab extends AbstractLaunchConfigurationTab {
}
/**
- * Attempts to add the given variable. Returns whether the variable was added or
- * not (as when the user answers not to overwrite an existing variable).
- *
- * @param variable the variable to add
- * @param forceOverwrite whether the user should be given a confirmation prompt
- * when overwriting a variable
+ * Attempts to add the given variable. Returns whether the variable
+ * was added or not (as when the user answers not to overwrite an
+ * existing variable).
+ * @param variable the variable to add
* @return whether the variable was added
*/
protected boolean addVariable(EnvironmentVariable variable) {

Back to the top