Skip to content

Commit

Permalink
refactor(plugins-api): Add default value for PluginDescriptor.options
Browse files Browse the repository at this point in the history
Make the property an empty list by default.

Signed-off-by: Martin Nonnenmacher <martin.nonnenmacher@bosch.com>
  • Loading branch information
mnonnenmacher committed Sep 2, 2024
1 parent e15091c commit 40e0133
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/api/src/main/kotlin/PluginDescriptor.kt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ data class PluginDescriptor(
/**
* The configuration options supported by the plugin.
*/
val options: List<PluginOption>
val options: List<PluginOption> = emptyList()
)

/**
Expand Down

0 comments on commit 40e0133

Please sign in to comment.