Skip to content

Commit

Permalink
chore: force non nullable in BuildInformation
Browse files Browse the repository at this point in the history
  • Loading branch information
kmruiz committed May 8, 2024
1 parent 4ecfb41 commit 8c9a864
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ object BuildInformation {
private val properties: Properties = Properties().also {
it.load(BuildInformation::class.java.getResourceAsStream("/build.properties"))
}
val pluginVersion = properties["pluginVersion"]?.toString()
val driverVersion = properties["driverVersion"]?.toString()
val segmentApiKey = properties["segmentApiKey"]?.toString()
val pluginVersion = properties["pluginVersion"]!!.toString()
val driverVersion = properties["driverVersion"]!!.toString()
val segmentApiKey = properties["segmentApiKey"]!!.toString()
}

0 comments on commit 8c9a864

Please sign in to comment.