You don’t need to comment code out if you use a version control system
Dear software developers everywhere,
If your code is in a version control system, you can go ahead and delete those old bits of code that you would comment out otherwise. I’m talking about things like this:
// BUFFER_SIZE = 1024;
// BUFFER_SIZE = 2048;
// BUFFER_SIZE = 4096;
BUFFER_SIZE = 8192;
That’s what version control is for.
Good day.