[FE] Make setter of CallableId.classId private

Fact that `classId` is `var` is detail of implementation,
  so there is no reason to expose its setter to public API
This commit is contained in:
Dmitriy Novozhilov
2021-09-21 15:28:28 +03:00
committed by TeamCityServer
parent e87f7c5cb4
commit 760943f0e1
@@ -33,6 +33,7 @@ data class CallableId(
}
return field
}
private set
constructor(classId: ClassId, callableName: Name) : this(classId.packageFqName, classId.relativeClassName, callableName) {
this.classId = classId