Assertion message improved

This commit is contained in:
Andrey Breslav
2012-10-18 17:17:07 +04:00
parent 62d8153ada
commit 6f4902bfbe
@@ -120,7 +120,7 @@ public class KotlinBuiltIns {
public static KotlinBuiltIns getInstance() {
if (initializing) {
synchronized (KotlinBuiltIns.class) {
assert instance != null : "We are under the same lock as initializing and instance";
assert instance != null : "Built-ins are not initialized (note: We are under the same lock as initializing and instance)";
return instance;
}
}