From: vasraz Date: Tue, 7 Feb 2023 15:21:44 +0000 (+0000) Subject: Remove 'Security Hotspot - Weak Cryptography' reported by Sonar X-Git-Tag: 1.12.3~25 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F75%2F133175%2F2;p=sdc.git Remove 'Security Hotspot - Weak Cryptography' reported by Sonar Signed-off-by: Vasyl Razinkov Change-Id: I6271488d30180f33e7e1cdc511e21fa71bfdc8b5 Issue-ID: SDC-4372 --- diff --git a/catalog-ui/src/app/ng2/pages/composition/interface-operatons/operation-creator/add-input/add-input.component.ts b/catalog-ui/src/app/ng2/pages/composition/interface-operatons/operation-creator/add-input/add-input.component.ts index 6632d1a69e..c757d5f9e3 100644 --- a/catalog-ui/src/app/ng2/pages/composition/interface-operatons/operation-creator/add-input/add-input.component.ts +++ b/catalog-ui/src/app/ng2/pages/composition/interface-operatons/operation-creator/add-input/add-input.component.ts @@ -136,7 +136,6 @@ export class AddInputComponent implements OnInit { input.schema.property = new SchemaProperty(); input.schema.property.type = schemaForm.value; } - input.inputId = this.generateUniqueId(); this.onAddInputEvent.emit(input); this.hideAddInput(); this.resetForm(); @@ -158,16 +157,6 @@ export class AddInputComponent implements OnInit { this.resetForm(); } - private generateUniqueId(): string { - let result = ''; - const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; - const charactersLength = characters.length; - for (let i = 0; i < 36; i++ ) { - result += characters.charAt(Math.floor(Math.random() * charactersLength)); - } - return result; - } - private resetForm() { this.inputForm.reset(); this.showInputSchema = false;