adam bien's blog

The Most Superfluous JavaDoc Comment 📎

One of my favorites is:

   /**
     * Sets the value of the color property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setColor(String value) {
        this.color = value;
    }


Without the valuable hint: "allowed object is {@link String }" it would be hardly possible to find out how to invoke this method :-).

What are your favorites?