karelpeeters
08/14/2017, 8:08 AM|=
is also the bitwise or operator and that would be translated as or
, and they forgot to check for the boolean case.arekolek
02/11/2019, 12:44 PM|=
in Java is the “compound assignment” for “boolean logical operator” (|
), not for the “conditional-or operator” (||
). So there was no bug there in the IDE 😛karelpeeters
02/11/2019, 12:48 PM