Remove 'Security Hotspot - Weak Cryptography' reported by Sonar 75/133175/2
authorvasraz <vasyl.razinkov@est.tech>
Tue, 7 Feb 2023 15:21:44 +0000 (15:21 +0000)
committerMichael Morris <michael.morris@est.tech>
Mon, 27 Feb 2023 18:32:38 +0000 (18:32 +0000)
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Change-Id: I6271488d30180f33e7e1cdc511e21fa71bfdc8b5
Issue-ID: SDC-4372

catalog-ui/src/app/ng2/pages/composition/interface-operatons/operation-creator/add-input/add-input.component.ts

index 6632d1a..c757d5f 100644 (file)
@@ -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;