boolean woah = true;
if(woah = true){int lol;}
in this example, java will destroy ur common sense by skipping the if statement. u should do it like this instead:
boolean woah = true;
if(woah){int lol;}
here, if(woah) will actually have no difference from if(true) or if(false)