Commit 326b7de0 authored by Grand Francois's avatar Grand Francois
Browse files

classe ParamDefinition : suppression dans le constructeur d'un appel à checkValue() inutile

Showing with 0 additions and 1 deletion
+0 -1
...@@ -41,7 +41,6 @@ export class ParamDefinition extends BaseParam { ...@@ -41,7 +41,6 @@ export class ParamDefinition extends BaseParam {
constructor(s: string, d: ParamDomain | ParamDomainValue, val?: number) { constructor(s: string, d: ParamDomain | ParamDomainValue, val?: number) {
super(s, d, val); super(s, d, val);
this._calc = ParamCalculability.FREE; this._calc = ParamCalculability.FREE;
this.checkValue(val);
} }
get v(): number { get v(): number {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment