Minor, remove workarounds for the fixed KT-5786

This commit is contained in:
Alexander Udalov
2015-04-28 17:34:06 +03:00
parent b860f2c9d5
commit 88abcdbde5
2 changed files with 2 additions and 2 deletions
@@ -138,7 +138,7 @@ public class BuiltInsSerializer(private val dependOnOldBuiltIns: Boolean) {
BuiltInsSerializationUtil.FallbackPaths.getStringTableFilePath(fqName))
}
internal /* KT-5786 */ fun write(destDir: File, fileName: String, stream: ByteArrayOutputStream, legacyFileName: String? = null) {
private fun write(destDir: File, fileName: String, stream: ByteArrayOutputStream, legacyFileName: String? = null) {
totalSize += stream.size()
totalFiles++
File(destDir, fileName).getParentFile().mkdirs()
@@ -111,7 +111,7 @@ abstract class KCallableContainerImpl {
}
}
/* private // KT-5786 */ fun loadJvmType(
private fun loadJvmType(
type: JvmProtoBuf.JvmType,
nameResolver: NameResolver,
classLoader: ClassLoader,