Commit 18900a66 authored by Grand Francois's avatar Grand Francois
Browse files

#46 classe ParamValues : suppression de copyMembers() suite à la suppression...

 #46 classe ParamValues : suppression de copyMembers() suite à la suppression des mécanismes de clonage dans ngHyg
Showing with 0 additions and 13 deletions
+0 -13
...@@ -376,17 +376,4 @@ export class ParamValues { ...@@ -376,17 +376,4 @@ export class ParamValues {
this._singleValue.value = this._iterator.next().value; this._singleValue.value = this._iterator.next().value;
return this._singleValue.value; return this._singleValue.value;
} }
/**
* copie des membres
*/
public copyMembers(n: ParamValues) {
n._valueMode = this._valueMode;
n._singleValue = new DefinedNumber(this._singleValue.value);
n._minValue = this._minValue;
n._maxValue = this._maxValue;
n._stepValue = this._stepValue;
if (this._valueList != undefined)
n._valueList = this._valueList.slice(0); // copie
}
} }
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