So maybe I find code of many forms easier to understand than some people. But whether I do or not, I find that some people have the tendency to oversaturate their code with pointless comments - like this one from some sample code written by my Java tutor:
Edit: Here's another gem I've spotted:
if(menuSelection.equals("Create")) { // sent by the 'create' menu itemNow, if that isn't redundant commenting of perfectly self-documenting code, I don't know what is. Anybody who can't decipher that line of code should not be touching any code written in any language. That line is practically the epitome of self-documenting, readable code - if you can't read it, you're certainly not qualified to be touching any Java code (and almost certainly not any type of code).
Edit: Here's another gem I've spotted:
WriteDataBaseToDisk(); // write it to diskHere we have a comment which is *less* informative/descriptive than the code. What is this "it" that we are writing to disk? This was by no means the only such uninformative comment...
Currently feeling: Annoyed
Currently listening to: Nirvana - About a Girl
Currently reading: Java assignment code