Bad condition for cast in KotlinStatementsSurrounder (EA-119701)
This commit is contained in:
+1
-1
@@ -35,7 +35,7 @@ public abstract class KotlinStatementsSurrounder implements Surrounder {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (elements.length == 1 || elements[0] instanceof KtExpression) {
|
if (elements.length == 1 && elements[0] instanceof KtExpression) {
|
||||||
if (!isApplicableWhenUsedAsExpression() && KotlinSurrounderUtils.isUsedAsExpression((KtExpression) elements[0])) {
|
if (!isApplicableWhenUsedAsExpression() && KotlinSurrounderUtils.isUsedAsExpression((KtExpression) elements[0])) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user