Rename field -> access in FieldSetter

This commit is contained in:
DBotThePony 2023-01-26 21:47:44 +07:00
parent b1c978a3b0
commit feb1f8d9d6
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -59,7 +59,7 @@ fun interface FieldGetter<V> {
}
fun interface FieldSetter<V> {
fun invoke(value: V, field: FieldAccess<V>, setByRemote: Boolean)
fun invoke(value: V, access: FieldAccess<V>, setByRemote: Boolean)
}
sealed interface IField<V> : ReadOnlyProperty<Any, V>, Supplier<V>, () -> V {