added tests for new javadoc behaviour, javac implementation of copying javadoc for getters/setters, and fixed pretty printer to no longer inject an extra newline at the top of javadoc.

This commit is contained in:
Reinier Zwitserloot
2013-07-08 21:20:24 +02:00
parent 0d5fea94da
commit 867929c79f
11 changed files with 219 additions and 6 deletions
@@ -6,7 +6,9 @@ class DelegateWithDeprecated {
private interface Bar {
@Deprecated
void deprecatedAnnotation();
/** @deprecated */
/**
* @deprecated
*/
void deprecatedComment();
void notDeprecated();
}