Skip to content

Commit

Permalink
killed a pair of synthetic accessors
Browse files Browse the repository at this point in the history
  • Loading branch information
Miha-x64 committed Jun 10, 2020
1 parent 8d56bc2 commit cbaa7e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import kotlin.contracts.InvocationKind
import kotlin.contracts.contract


private val EmptyArray = emptyArray<Any?>()
@JvmField @JvmSynthetic internal val EmptyArray = emptyArray<Any?>()
fun <SCH : Schema<SCH>> partial(schema: SCH): DataType.NotNull.Partial<PartialStruct<SCH>, SCH> =
object : DataType.NotNull.Partial<PartialStruct<SCH>, SCH>(schema) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ abstract class Schema<SELF : Schema<SELF>> : DataType.NotNull.Partial<Struct<SEL
@JvmSynthetic internal fun tmpFields() =
tmpFields ?: throw IllegalStateException("schema `${javaClass.simpleName}` is already initialized")

private var mutableFieldBits = 0L
@JvmField @JvmSynthetic internal var mutableFieldBits = 0L

/** A set of all fields of [this] [Schema]. */
val allFieldSet: FieldSet<SELF, FieldDef<SELF, *, *>>
Expand Down

0 comments on commit cbaa7e1

Please sign in to comment.