According to http://docs.oracle.com/javase/tutorial/java/javaOO/constructors.html:
The compiler automatically provides a no-argument, default constructor for any class without constructors
That means, that the default constructor will be added implicitly in a compile time. At the time, when it gets for javadoc, it is already added.
This is specified here http://www.oracle.com/technetwork/java/javase/documentation/index-137868.html#defaultconstructors:
Section 8.8.7 of the Java Language Specification, Second Edition describes a default constructor: If a class contains no constructor declarations, then a default constructor that takes no parameters is automatically provided. It invokes the superclass constructor with no arguments. The constructor has the same access as its class.
The Javadoc tool generates documentation for default constructors. When it documents such a constructor, Javadoc leaves its description blank, because a default constructor can have no doc comment.
Javadocto read your mind.