Skip to content

Commit ace26f3

Browse files
chore: resolved comments
1 parent 1476298 commit ace26f3

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

src/migration/dataraptor.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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

src/migration/flexcard.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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

src/migration/omniscript.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)