mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-13 16:19:24 +00:00
11 lines
146 B
Java
11 lines
146 B
Java
// version 8:
|
|
interface DefaultMethod {
|
|
int size();
|
|
|
|
default boolean isEmpty() {
|
|
return size() == 0;
|
|
}
|
|
|
|
default strictfp void run() {
|
|
}
|
|
} |