blob: 7d1705a7e32a5dba8ca7e5ef004ed89b1aca77b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import lombok.Delegate;
class DelegateRecursionOuterMost {
private final @Delegate DelegateRecursionCenter center = new DelegateRecursionCenter();
DelegateRecursionOuterMost() {
super();
}
public @java.lang.SuppressWarnings("all") void innerMostMethod() {
this.center.innerMostMethod();
}
}
class DelegateRecursionCenter {
private final @Delegate DelegateRecursionInnerMost inner = new DelegateRecursionInnerMost();
DelegateRecursionCenter() {
super();
}
public @java.lang.SuppressWarnings("all") void innerMostMethod() {
this.inner.innerMostMethod();
}
}
class DelegateRecursionInnerMost {
DelegateRecursionInnerMost() {
super();
}
public void innerMostMethod() {
}
}
|