Skip to content

Commit aa528c6

Browse files
committed
Remove unused export
1 parent c99bf5b commit aa528c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/view/compare-performance/ComparePerformance.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ function addOptionals(a: Optional<number>, b: Optional<number>) {
417417
/**
418418
* Returns a "fingerprint" from the given name, which is used to group together similar names.
419419
*/
420-
export function getNameFingerprint(name: string, renamings: Renaming[]) {
420+
function getNameFingerprint(name: string, renamings: Renaming[]) {
421421
for (const { patternRegexp, replacement } of renamings) {
422422
if (patternRegexp != null) {
423423
name = name.replace(patternRegexp, replacement);

0 commit comments

Comments
 (0)