Refactoring: move engine related classes to subdirectory.

This commit is contained in:
Ilya Gorbunov
2015-10-30 21:14:39 +03:00
parent f9bfeb0f32
commit 183523cf24
5 changed files with 1 additions and 5 deletions
@@ -1,6 +1,5 @@
package templates
import generators.SourceFile
import templates.Family.*
fun comparables(): List<GenericFunction> {
@@ -1,6 +1,5 @@
package templates
import generators.SourceFile
import templates.Family.*
fun ranges(): List<GenericFunction> {
@@ -1,11 +1,9 @@
package templates
import generators.SourceFile
import templates.Family.*
import templates.Family.Collections
import java.io.StringReader
import java.util.*
import kotlin.properties.Delegates
enum class Family {
Sequences,
@@ -1,4 +1,4 @@
package generators
package templates
enum class SourceFile(jvmClassName: String? = null, val multifile: Boolean = true) {