Skip to content

Commit 8114b85

Browse files
committed
refactor(model): Use the Options typealias
Use the `Options` typealias for the `options` property in `ProviderPluginConfiguration`. Signed-off-by: Martin Nonnenmacher <[email protected]>
1 parent 594568e commit 8114b85

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

model/src/main/kotlin/config/ProviderPluginConfiguration.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ package org.ossreviewtoolkit.model.config
2121

2222
import com.sksamuel.hoplite.ConfigAlias
2323

24+
import org.ossreviewtoolkit.utils.common.Options
2425
import org.ossreviewtoolkit.utils.common.Plugin
2526

2627
/**
@@ -47,5 +48,5 @@ data class ProviderPluginConfiguration(
4748
* The configuration options of the provider. See the specific implementation for available configuration options.
4849
*/
4950
@ConfigAlias("config")
50-
val options: Map<String, String> = emptyMap()
51+
val options: Options = emptyMap()
5152
)

0 commit comments

Comments
 (0)