From efef7edca43f810bbc5f962615995310b470d744 Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Tue, 1 Oct 2013 21:06:17 +0400 Subject: [PATCH] Removed copyToArray hack --- .../plugin/highlighter/KotlinSuppressableWarningProblemGroup.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/src/org/jetbrains/jet/plugin/highlighter/KotlinSuppressableWarningProblemGroup.kt b/idea/src/org/jetbrains/jet/plugin/highlighter/KotlinSuppressableWarningProblemGroup.kt index d79558e4236..fc7b57c15b3 100644 --- a/idea/src/org/jetbrains/jet/plugin/highlighter/KotlinSuppressableWarningProblemGroup.kt +++ b/idea/src/org/jetbrains/jet/plugin/highlighter/KotlinSuppressableWarningProblemGroup.kt @@ -41,7 +41,7 @@ class KotlinSuppressableWarningProblemGroup( if (element == null) return SuppressIntentionAction.EMPTY_ARRAY - return createSuppressWarningActions(element, diagnosticFactory).copyToArray() as Array // TODO temp hack + return createSuppressWarningActions(element, diagnosticFactory).copyToArray() } }