kevin.cianfarini
02/20/2020, 3:09 PMThere's a cycle in the delegation calls chain
and I'm not quite sure why. Does anyone know how to fix this?
internal class EmptyComponentModel private constructor(
override val countryCode: CountryCode,
override val saleStatus: SaleStatus,
override val price: Monetary? = null,
override val saleNotes: String? = null
) : PlacardComponentModel(ListingSaleType.Unknown) {
constructor(countryCode: CountryCode, saleStatus: SaleStatus) : this(
countryCode = countryCode,
saleStatus = saleStatus
)
}
streetsofboston
02/20/2020, 3:11 PMinternal class EmptyComponentModel private constructor(
override val countryCode: CountryCode,
override val saleStatus: SaleStatus,
override val price: Monetary? = null,
override val saleNotes: String? = null
) : PlacardComponentModel(ListingSaleType.Unknown) {
constructor(countryCode: CountryCode, saleStatus: SaleStatus) : this(
countryCode = countryCode,
saleStatus = saleStatus,
price = null,
saleNotes = null
)
}
kevin.cianfarini
02/20/2020, 3:11 PMconstructor(countryCode: CountryCode, saleStatus: SaleStatus) : this(
countryCode = countryCode,
saleStatus = saleStatus,
price = null,
saleNotes = null
)
streetsofboston
02/20/2020, 3:12 PMkevin.cianfarini
02/20/2020, 3:12 PMstreetsofboston
02/20/2020, 3:12 PMkevin.cianfarini
02/20/2020, 3:13 PM