Does any else here do little tricks with java comments in order to save time switching between different behaviours?
For example, to toggle between two lines of code, just add/remove an asterisk:
// The space is there because otherwise the forum syntax highlighting detects it as a javadoc comment.
/* */int i = 0;
//*/int i = 1;
// The space is there because otherwise the forum syntax highlighting detects it as a javadoc comment.
/* /int i = 0;
//*/int i = 1;
Post your comment tricks here.