Skip to content

Commit

Permalink
refactor: make all fields in CompositionComponent to non-nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
goofyz committed Apr 17, 2024
1 parent c395770 commit d6f1f4a
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ package com.osfans.trime.data.theme.model

data class CompositionComponent(
val start: String,
val move: String?,
val move: String,
val end: String,
val composition: String?,
val letterSpacing: Int?,
val label: String?,
val candidate: String?,
val comment: String?,
val sep: String?,
val align: String?,
val whenStr: String?,
val composition: String,
val letterSpacing: Int,
val label: String,
val candidate: String,
val comment: String,
val sep: String,
val align: String,
val whenStr: String,
val click: String,
)

0 comments on commit d6f1f4a

Please sign in to comment.