mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-03 00:18:04 +00:00
support delegate with deprecated comment.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import lombok.Delegate;
|
||||
|
||||
class DelegateWithDeprecated {
|
||||
@Delegate private Bar bar;
|
||||
|
||||
private interface Bar {
|
||||
@Deprecated
|
||||
void deprecatedAnnotation();
|
||||
/** @deprecated */
|
||||
void deprecatedComment();
|
||||
void notDeprecated();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user