Skip to content
Snippets Groups Projects
Verified Commit c182c47b authored by Jan Loewe's avatar Jan Loewe :speech_balloon:
Browse files

feat(d-si v1.3.0): remove real_CS

parent 3629e3cd
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,6 @@ export class Quantity extends XMLElement { ...@@ -14,7 +14,6 @@ export class Quantity extends XMLElement {
// TODO: Implement D-SI // TODO: Implement D-SI
si_real?: any; si_real?: any;
si_realCS?: any;
si_list?: any; si_list?: any;
si_hybrid?: any; si_hybrid?: any;
...@@ -37,8 +36,6 @@ export class Quantity extends XMLElement { ...@@ -37,8 +36,6 @@ export class Quantity extends XMLElement {
this.noQuantity = new TextBlock(options.noQuantity); this.noQuantity = new TextBlock(options.noQuantity);
else if (options.si_real) else if (options.si_real)
this.si_real = options.si_real; this.si_real = options.si_real;
else if (options.si_realCS)
this.si_realCS = options.si_realCS;
else if (options.si_list) else if (options.si_list)
this.si_list = options.si_list; this.si_list = options.si_list;
else if (options.si_hybrid) else if (options.si_hybrid)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment