build-logic/generatorlegacybuild/src/main/kotlin/karakum/popper/Generator.kt [90:108]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - private fun fileContent( pkg: Package, annotations: String, body: String, ): String { val defaultImports = DEFAULT_IMPORTS .asSequence() .filter { it.first in body } .map { "import ${it.second}" } .joinToString("\n") return sequenceOf( "// $GENERATOR_COMMENT", annotations, pkg.pkg, defaultImports, body, ).filter { it.isNotEmpty() } .joinToString("\n\n") - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - build-logic/generatorlegacybuild/src/main/kotlin/karakum/table/Generator.kt [97:115]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - private fun fileContent( pkg: Package, annotations: String, body: String, ): String { val defaultImports = DEFAULT_IMPORTS .asSequence() .filter { it.first in body } .map { "import ${it.second}" } .joinToString("\n") return sequenceOf( "// $GENERATOR_COMMENT", annotations, pkg.pkg, defaultImports, body, ).filter { it.isNotEmpty() } .joinToString("\n\n") - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -