refactor: Internalize processor constructor

BREAKING CHANGE: This gets rid of the public constructor.
This commit is contained in:
oSumAtrIX
2023-09-13 05:32:06 +02:00
parent 8de30633ae
commit a802d0df46
3 changed files with 2 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ import com.squareup.kotlinpoet.ksp.toClassName
import com.squareup.kotlinpoet.ksp.writeTo
import kotlin.reflect.KClass
class PatchProcessor(
class PatchProcessor internal constructor(
private val codeGenerator: CodeGenerator,
) : SymbolProcessor {