This is my code:
boolean startGameBoolean; Bundle extras = getIntent().getExtras(); extras.getInt(\"startGameBoolean\"); if (startGameBoolean = true){ counte
I had a similar error... for this line
JLabel label = new JLabel("You have $" + amountInAccount + " in your account.");
I used Quick fix (Ctrl+1) and chose Remove 'label', keep side-effect assignments...
and the code became
new JLabel("You have $" + amountInAccount + " in your account.");