Skip to content

Commit a90818b

Browse files
committed
Removed unused testClassConstructors
1 parent 1514c6b commit a90818b

File tree

1 file changed

+0
-2
lines changed
  • utbot-framework/src/main/kotlin/org/utbot/framework/codegen/model/constructor/util

1 file changed

+0
-2
lines changed

utbot-framework/src/main/kotlin/org/utbot/framework/codegen/model/constructor/util/CgComponents.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ internal object CgComponents {
4040
fun getVariableConstructorBy(context: CgContext) = variableConstructors.getOrPut(context) { CgVariableConstructor(context) }
4141

4242
fun getMethodConstructorBy(context: CgContext) = methodConstructors.getOrPut(context) { CgMethodConstructor(context) }
43-
fun getTestClassConstructorBy(context: CgContext) = testClassConstructors.getOrPut(context) { CgTestClassConstructor(context) }
4443

4544
private val nameGenerators: MutableMap<CgContext, CgNameGenerator> = mutableMapOf()
4645
private val statementConstructors: MutableMap<CgContext, CgStatementConstructor> = mutableMapOf()
@@ -50,5 +49,4 @@ internal object CgComponents {
5049

5150
private val variableConstructors: MutableMap<CgContext, CgVariableConstructor> = mutableMapOf()
5251
private val methodConstructors: MutableMap<CgContext, CgMethodConstructor> = mutableMapOf()
53-
private val testClassConstructors: MutableMap<CgContext, CgTestClassConstructor> = mutableMapOf()
5452
}

0 commit comments

Comments
 (0)