EA-45389 - assert: SimplifyBooleanExpressionFix$ExpressionVisitor.visitPolyadicExpression

This commit is contained in:
anna
2013-04-02 18:46:32 +02:00
parent d8dd961de3
commit b75d4c139f
2 changed files with 7 additions and 1 deletions

View File

@@ -311,7 +311,6 @@ public class SimplifyBooleanExpressionFix implements IntentionAction {
}
catch (IncorrectOperationException e) {
resultExpression = null;
LOG.error("lExpr: " + lExpr.getText() + "; op: " + javaToken.getText() + "; rExpr: " + operand.getText() + "; top: " + expression.getText());
}
}
else {

View File

@@ -0,0 +1,7 @@
// "Simplify boolean expression" "false"
class A {
{
String a = "", b= "", c = "";
boolean bb = a + + b <caret>== c;
}
}