7

If I had a straw for every method I didn't comment...

Comments
  • 1
    Good code 'generally' does not need comments.
  • 2
    @nerd-san Better code has them anyway
  • 2
    @fmi11
    Sometimes comments are great, no question,but sometime they are really unnecessary and just cause noise.
  • 1
    I saw that in my project code yersterday... Does it make a better code ?

    // Send mail to users
    public void sendMailUsers() {
    // Retrieve users
    List<User> users = userSvc.find();

    // Send mail to users
    mailSvc.sendMail(users);
    }
Add Comment