mirror of
https://github.com/tiennm99/lombok.git
synced 2026-07-17 10:17:49 +00:00
[Issue 275] Allow @Delegate on no-argument methods
This commit is contained in:
committed by
Reinier Zwitserloot
parent
68fe3f41e9
commit
87cca2d322
@@ -0,0 +1,11 @@
|
||||
import lombok.Delegate;
|
||||
|
||||
abstract class DelegateOnMethods {
|
||||
|
||||
@Delegate
|
||||
public abstract Bar getBar();
|
||||
|
||||
public static interface Bar {
|
||||
void bar(java.util.ArrayList<java.lang.String> list);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user