Revert non-lock value according to comment

This commit is contained in:
Nikolay Krasko
2015-09-11 17:27:30 +03:00
parent e66c92f3e2
commit b7a96392dd
@@ -27,7 +27,7 @@ class StarProjectionImpl(
override fun getProjectionKind() = Variance.OUT_VARIANCE
// No synchronization here: there's no problem in accidentally computing this twice
private val _type: JetType by lazy {
private val _type: JetType by lazy(LazyThreadSafetyMode.NONE) {
typeParameter.starProjectionType()
}