File tree Expand file tree Collapse file tree 3 files changed +1
-5
lines changed
Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -69,8 +69,7 @@ export class DataRaptorMigrationTool extends BaseMigrationTool implements Migrat
6969
7070 // Query all dataraptors and the respective items
7171 DebugTimer . getInstance ( ) . lap ( 'Query data raptors' ) ;
72- // const dataRaptors = await this.getAllDataRaptors();
73- let dataRaptors = await this . getAllDataRaptors ( ) ;
72+ const dataRaptors = await this . getAllDataRaptors ( ) ;
7473
7574 const dataRaptorItemsData = await this . getAllItems ( ) ;
7675
Original file line number Diff line number Diff line change @@ -90,7 +90,6 @@ export class CardMigrationTool extends BaseMigrationTool implements MigrationToo
9090 // Perform Records Migration from VlocityCard__c to OmniUiCard
9191 async migrate ( ) : Promise < MigrationResult [ ] > {
9292 // Get All the Active VlocityCard__c records
93- // const allCards = await this.getAllActiveCards();
9493 const allCards = await this . getAllActiveCards ( ) ;
9594
9695 Logger . log ( this . messages . getMessage ( 'foundFlexCardsToMigrate' , [ allCards . length ] ) ) ;
@@ -148,7 +147,6 @@ export class CardMigrationTool extends BaseMigrationTool implements MigrationToo
148147 public async assess ( ) : Promise < FlexCardAssessmentInfo [ ] > {
149148 try {
150149 Logger . log ( this . messages . getMessage ( 'startingFlexCardAssessment' ) ) ;
151- // const flexCards = await this.getAllActiveCards();
152150 const flexCards = await this . getAllActiveCards ( ) ;
153151 Logger . log ( this . messages . getMessage ( 'foundFlexCardsToAssess' , [ flexCards . length ] ) ) ;
154152
Original file line number Diff line number Diff line change @@ -682,7 +682,6 @@ export class OmniScriptMigrationTool extends BaseMigrationTool implements Migrat
682682
683683 async migrate ( ) : Promise < MigrationResult [ ] > {
684684 // Get All Records from OmniScript__c (IP & OS Parent Records)
685- //const omniscripts = await this.getAllOmniScripts();
686685 const omniscripts = await this . getAllOmniScripts ( ) ;
687686
688687 const functionDefinitionMetadata = await getAllFunctionMetadata ( this . namespace , this . connection ) ;
You can’t perform that action at this time.
0 commit comments