File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
utbot-framework/src/main/kotlin/org/utbot/framework/codegen/model/constructor/util Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ internal object CgComponents {
40
40
fun getVariableConstructorBy (context : CgContext ) = variableConstructors.getOrPut(context) { CgVariableConstructor (context) }
41
41
42
42
fun getMethodConstructorBy (context : CgContext ) = methodConstructors.getOrPut(context) { CgMethodConstructor (context) }
43
- fun getTestClassConstructorBy (context : CgContext ) = testClassConstructors.getOrPut(context) { CgTestClassConstructor (context) }
44
43
45
44
private val nameGenerators: MutableMap <CgContext , CgNameGenerator > = mutableMapOf ()
46
45
private val statementConstructors: MutableMap <CgContext , CgStatementConstructor > = mutableMapOf ()
@@ -50,5 +49,4 @@ internal object CgComponents {
50
49
51
50
private val variableConstructors: MutableMap <CgContext , CgVariableConstructor > = mutableMapOf ()
52
51
private val methodConstructors: MutableMap <CgContext , CgMethodConstructor > = mutableMapOf ()
53
- private val testClassConstructors: MutableMap <CgContext , CgTestClassConstructor > = mutableMapOf ()
54
52
}
You can’t perform that action at this time.
0 commit comments