PrettyCommentsPrinter now prints default clause of annotation methods. Fixes Issue #350

This commit is contained in:
Robbert Jan Grootjans
2012-03-05 21:11:19 +01:00
parent 7988f17c28
commit f1e679471d
5 changed files with 23 additions and 0 deletions
@@ -0,0 +1,5 @@
class WithInnerAnnotation {
@interface Inner {
int bar() default 42;
}
}