When I create a new class in Eclipse and check "Generate comments", I get this:
/** * */ package my_package; /** * @author myname * */ public class MyClass { } What's the point of the comment above the package declaration? It doesn't seem to be included anywhere (if I put something there) when I generate javadocs. Is it just Eclipse misfiring, or a weird Eclipse setting I have, or is it there for a reason?
