Adding missing keep statement to proguard config

KT-8487
This commit is contained in:
Ilya Chernikov
2016-01-28 01:26:54 +01:00
committed by Alexey Tsvetkov
parent d4a86b7f6d
commit ebae665b78
+2 -1
View File
@@ -107,7 +107,7 @@ messages/**)
# for j2k
-keep class com.intellij.codeInsight.NullableNotNullManager { public protected *; }
# for kotlin-build (consider repacking compiler together with kotlin-build and remove this part afterwards)
# for kotlin-build-common (consider repacking compiler together with kotlin-build-common and remove this part afterwards)
-keep class com.intellij.util.io.IOUtil { public *; }
-keep class com.intellij.openapi.util.io.FileUtil { public *; }
-keep class com.intellij.util.SystemProperties { public *; }
@@ -122,6 +122,7 @@ messages/**)
-keep class com.intellij.util.io.ExternalIntegerKeyDescriptor { *; }
-keep class com.intellij.util.containers.hash.EqualityPolicy { *; }
-keep class com.intellij.util.containers.hash.EqualityPolicy.* { *; }
-keep class com.intellij.util.containers.Interner { *; }
-keep class gnu.trove.TIntHashSet { *; }
-keep class gnu.trove.TIntIterator { *; }