Remove unused export

This commit is contained in:
Asger F
2024-11-27 11:55:48 +01:00
parent c99bf5bb9f
commit aa528c6037

View File

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