mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 18:23:24 +00:00
13 lines
302 B
Java
13 lines
302 B
Java
//skip compare content
|
|
import lombok.experimental.Delegate;
|
|
import lombok.Getter;
|
|
|
|
class DelegateOnStatic {
|
|
@Delegate private static final java.lang.Runnable staticField = null;
|
|
}
|
|
|
|
class DelegateOnStaticMethod {
|
|
@Delegate private static final java.lang.Runnable staticMethod() {
|
|
return null;
|
|
};
|
|
} |