Skip to content

Commit

Permalink
Make definitions nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
PotatoCurry committed Jul 24, 2019
1 parent 7b74fc0 commit 646b472
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/json/JsonSet.kt
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ internal data class JsonCreator (
internal data class JsonTerm (
val id: Long,
val term: String,
val definition: String,
val image: JsonImage? = null,
val definition: String?,
val image: JsonImage?,
val rank: Int
)

Expand Down

0 comments on commit 646b472

Please sign in to comment.