Skip to content

Commit

Permalink
Add empty null value.
Browse files Browse the repository at this point in the history
  • Loading branch information
corrado4eyes committed Nov 12, 2021
1 parent c2adaea commit 759b37a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ data class DataTypesValues(
enumValue=A&
listValue.0=zero&
listValue.1=first&
listValue.2=second""".lines().joinToString("") { it.trim() }
listValue.2=second&
nullableValue""".lines().joinToString("") { it.trim() }

This comment has been minimized.

Copy link
@avdyushin

avdyushin Nov 12, 2021

Contributor

You can do

""" 
    foo
    bar 
""".trimIndent().lines().joinToString("")
}
}

0 comments on commit 759b37a

Please sign in to comment.