()
| 60 | private final Module interceptorModule = |
| 61 | new AbstractModule() { |
| 62 | @Override |
| 63 | protected void configure() { |
| 64 | bindInterceptor( |
| 65 | any(), |
| 66 | any(), |
| 67 | new MethodInterceptor() { |
| 68 | @Override |
| 69 | public Object invoke(MethodInvocation chain) throws Throwable { |
| 70 | return chain.proceed() + " WORLD"; |
| 71 | } |
| 72 | }); |
| 73 | } |
| 74 | }; |
| 75 | |
| 76 | private final Module noopInterceptorModule = |
nothing calls this directly
no test coverage detected