Skip to content

Commit

Permalink
Fix field problems
Browse files Browse the repository at this point in the history
  • Loading branch information
seadowg committed Jun 27, 2024
1 parent ef3fffb commit 73990a2
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package org.odk.collect.entities.javarosa.finalization
import org.odk.collect.entities.javarosa.spec.EntityAction

class Entity(
val action: EntityAction,
val dataset: String,
val id: String?,
val label: String?,
val version: Int,
val properties: List<Pair<String, String>>
@JvmField val action: EntityAction,
@JvmField val dataset: String,
@JvmField val id: String?,
@JvmField val label: String?,
@JvmField val version: Int,
@JvmField val properties: List<Pair<String, String>>
)

0 comments on commit 73990a2

Please sign in to comment.