diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2020-08-14 13:37:38 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-08-19 13:34:10 +0200 |
commit | 97275264d7c39afde6c6a1511e7ad499430ca594 (patch) | |
tree | e33ceb78b4242903d79c173a18da7a25f8e47a7d /plugins/gfm/src | |
parent | c3e979270956b8df9380cf9eea067048f325dbd3 (diff) | |
download | dokka-97275264d7c39afde6c6a1511e7ad499430ca594.tar.gz dokka-97275264d7c39afde6c6a1511e7ad499430ca594.tar.bz2 dokka-97275264d7c39afde6c6a1511e7ad499430ca594.zip |
Specify generic type explicitly, fix formatting
Diffstat (limited to 'plugins/gfm/src')
-rw-r--r-- | plugins/gfm/src/main/kotlin/GfmPlugin.kt | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/gfm/src/main/kotlin/GfmPlugin.kt b/plugins/gfm/src/main/kotlin/GfmPlugin.kt index c8f78c26..65723a0c 100644 --- a/plugins/gfm/src/main/kotlin/GfmPlugin.kt +++ b/plugins/gfm/src/main/kotlin/GfmPlugin.kt @@ -362,8 +362,4 @@ class MarkdownLocationProviderFactory(val context: DokkaContext) : LocationProvi class MarkdownLocationProvider( pageGraphRoot: RootPageNode, dokkaContext: DokkaContext -) : DokkaLocationProvider( - pageGraphRoot, - dokkaContext, - ".md" -)
\ No newline at end of file +) : DokkaLocationProvider(pageGraphRoot, dokkaContext, ".md")
\ No newline at end of file |