blob: 60333445a10c05ba45568808edfc5bea1baca99f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package org.jetbrains.dokka.templates
import org.jetbrains.dokka.DokkaConfiguration
import java.io.File
class FallbackTemplateProcessingStrategy : TemplateProcessingStrategy {
override fun process(input: File, output: File, moduleContext: DokkaConfiguration.DokkaModuleDescription?): Boolean {
if (input != output) input.copyTo(output, overwrite = true)
return true
}
}
|