From 3b7c743acce01258888c875b40100a0b9cafa99d Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Thu, 17 Apr 2014 03:20:14 +0400 Subject: [PATCH] Minor fix in assert<->if+throw intention description --- .../ConvertAssertToIfWithThrowIntention/after.kt.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/resources/intentionDescriptions/ConvertAssertToIfWithThrowIntention/after.kt.template b/idea/resources/intentionDescriptions/ConvertAssertToIfWithThrowIntention/after.kt.template index 631afca3b3e..2999e48a3ca 100644 --- a/idea/resources/intentionDescriptions/ConvertAssertToIfWithThrowIntention/after.kt.template +++ b/idea/resources/intentionDescriptions/ConvertAssertToIfWithThrowIntention/after.kt.template @@ -1,5 +1,5 @@ fun foo() { if (!true) { - throw AssertionException("text") + throw AssertionError("text") } }