Skip to content

Commit

Permalink
fix(annotations): support getting NT values using 2025 units
Browse files Browse the repository at this point in the history
  • Loading branch information
doinkythederp committed Jan 13, 2025
1 parent 9520d14 commit 14667e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ object LogTableUtils {

fun <E : Enum<E>> LogTable.kGet(key: String, defaultValue: E): E = get(key, defaultValue)

fun <M : Measure<U>, U : Unit> LogTable.kGet(key: String, defaultValue: Measure<U>): Measure<U> =
fun <M : Measure<U>, U : Unit> LogTable.kGet(key: String, defaultValue: M): M =
get(key, defaultValue)

fun LogTable.kGet(key: String, defaultValue: BooleanArray): BooleanArray = get(key, defaultValue)
Expand Down

0 comments on commit 14667e0

Please sign in to comment.