[FE] Add isLocal name to ClassId constructor calls where it needed

This commit is contained in:
Dmitriy Novozhilov
2023-09-19 13:08:42 +03:00
committed by Space Team
parent adaf8ae46a
commit 9e5ee3afa0
39 changed files with 55 additions and 55 deletions
@@ -44,6 +44,6 @@ internal object ClassIdCalculator {
}
)
return ClassId(ktFile.packageFqName, relativeClassName, /*local=*/false)
return ClassId(ktFile.packageFqName, relativeClassName, isLocal = false)
}
}
}