Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse conditional breakpoint compilation error "==" invalid AssignmentOperator

So if I got it right, you're supposed to use a boolean expression for the condition. Yet when I try to use impact == null I get the following error:

Conditional breakpoint has compilation error(s).

Reason:
Syntax error on token "==", invalid AssignmentOperator.

What gives? What did I do wrong, and how do I fix it?

like image 882
Sunspawn Avatar asked Dec 14 '22 15:12

Sunspawn


1 Answers

Just a wild guess as I faced a similar problem some moments ago: You have written impact == null; instead of impact == null.

If this is the case: try removing the semicolon.

like image 192
Seb Avatar answered May 03 '23 17:05

Seb