Rename findCommonResultSetNames to findResultSetsToCompare

This commit is contained in:
Koen Vlaswinkel
2023-12-05 10:32:50 +01:00
parent da8d32c4bc
commit b1289a4598

View File

@@ -88,7 +88,7 @@ export class CompareView extends AbstractWebview<
currentResultSetDisplayName,
fromResultSet,
toResultSet,
} = await this.findCommonResultSetNames(
} = await this.findResultSetsToCompare(
this.comparePair,
selectedResultSetName,
);
@@ -190,7 +190,7 @@ export class CompareView extends AbstractWebview<
}
}
private async findCommonResultSetNames(
private async findResultSetsToCompare(
{ from, fromSchemas, to, toSchemas }: ComparePair,
selectedResultSetName: string | undefined,
) {