private -> internal where it's necessary: synchronize OperationsMapGenerated and GenerateOperationsMap.

This commit is contained in:
Ilya Gorbunov
2015-09-26 00:26:59 +03:00
parent 0a24ba77b5
commit ee44717a41
2 changed files with 2 additions and 2 deletions
@@ -94,7 +94,7 @@ fun generate(): String {
p.println()
p.println("private val binaryOperations: HashMap<BinaryOperationKey<*, *>, Pair<Function2<Any?, Any?, Any>, Function2<BigInteger, BigInteger, BigInteger>>>")
p.println("internal val binaryOperations: HashMap<BinaryOperationKey<*, *>, Pair<Function2<Any?, Any?, Any>, Function2<BigInteger, BigInteger, BigInteger>>>")
p.println(" = hashMapOf<BinaryOperationKey<*, *>, Pair<Function2<Any?, Any?, Any>, Function2<BigInteger, BigInteger, BigInteger>>>(")
p.pushIndent()