My OCD makes me add \"break\" when writing case statements, even if they will not be executed. Consider the following code example:
switch(option) { cas
The break after your default case is just a matter of personal preference.
Putting a break after return almost seems contradictory to me. I'd remove the break, just to make the return statement really stand out.