From 326b7de0d04e48e21c13ea20de91772cb124590d Mon Sep 17 00:00:00 2001
From: "francois.grand" <francois.grand@irstea.fr>
Date: Mon, 26 Mar 2018 12:06:40 +0200
Subject: [PATCH] =?UTF-8?q?classe=20ParamDefinition=20:=20suppression=20da?=
 =?UTF-8?q?ns=20le=20constructeur=20d'un=20appel=20=C3=A0=20checkValue()?=
 =?UTF-8?q?=20inutile?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 src/param/param-definition.ts | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/param/param-definition.ts b/src/param/param-definition.ts
index 4f911a6c..a3ee7daa 100644
--- a/src/param/param-definition.ts
+++ b/src/param/param-definition.ts
@@ -41,7 +41,6 @@ export class ParamDefinition extends BaseParam {
     constructor(s: string, d: ParamDomain | ParamDomainValue, val?: number) {
         super(s, d, val);
         this._calc = ParamCalculability.FREE;
-        this.checkValue(val);
     }
 
     get v(): number {
-- 
GitLab