diff --git a/src/app/formulaire/definition/form-compute-fixedvar.ts b/src/app/formulaire/definition/form-compute-fixedvar.ts
index f3d477bc2f74611225d636c92c7103ad114643b1..9214f357d40df73cdd498ccba33efb8aeca1acb9 100644
--- a/src/app/formulaire/definition/form-compute-fixedvar.ts
+++ b/src/app/formulaire/definition/form-compute-fixedvar.ts
@@ -54,20 +54,6 @@ export abstract class FormComputeFixedVar extends FormCompute {
         else {
             // il y a un paramètre à varier
 
-            const nubVarParam = nub.getParameter(varParam.symbol);
-            switch (varParam.valueMode) {
-                case ParamValueMode.LISTE:
-                    nubVarParam.paramValues.setValues(varParam.paramDefinition.paramValues.valueList);
-                    break;
-
-                case ParamValueMode.MINMAX:
-                    const min = varParam.paramDefinition.paramValues.min;
-                    const max = varParam.paramDefinition.paramValues.max;
-                    const step = varParam.paramDefinition.paramValues.step;
-                    nubVarParam.paramValues.setValues(min, max, step);
-                    break;
-            }
-
             const res: Result = this.runNubCalc(nub, computedParam, computePrec);
 
             this.formResult.varResults.variatedParameter = varParam;