File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
firebase-firestore/src/commonMain/kotlin/dev/gitlive/firebase/firestore Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public class FieldValuesDSL internal constructor() : EncodeSettings.Builder {
1717
1818 @PublishedApi
1919 internal val fieldValuesToAdd: MutableList < () -> Any > = mutableListOf ()
20- internal val fieldValues = fieldValuesToAdd.map { valueToEncode ->
20+ internal val fieldValues get() = fieldValuesToAdd.map { valueToEncode ->
2121 valueToEncode.invoke()
2222 }
2323
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public class FieldsAndValuesUpdateDSL internal constructor() : EncodeSettings.Bu
2727
2828 @PublishedApi
2929 internal val fieldAndValueToAdd: MutableList < () -> FieldAndValue > = mutableListOf ()
30- internal val fieldsAndValues = fieldAndValueToAdd.map { fieldAndValueToEncode ->
30+ internal val fieldsAndValues: List < FieldAndValue > get() = fieldAndValueToAdd.map { fieldAndValueToEncode ->
3131 fieldAndValueToEncode.invoke()
3232 }
3333
You can’t perform that action at this time.
0 commit comments