Removed copyToArray hack

This commit is contained in:
Evgeny Gerashchenko
2013-10-01 21:06:17 +04:00
parent 02e76bd805
commit efef7edca4
@@ -41,7 +41,7 @@ class KotlinSuppressableWarningProblemGroup(
if (element == null)
return SuppressIntentionAction.EMPTY_ARRAY
return createSuppressWarningActions(element, diagnosticFactory).copyToArray() as Array<SuppressIntentionAction> // TODO temp hack
return createSuppressWarningActions(element, diagnosticFactory).copyToArray()
}
}