()
| 394 | } |
| 395 | |
| 396 | public Object invoke() { |
| 397 | switch(getRequiredArity()) |
| 398 | { |
| 399 | case 0: |
| 400 | return doInvoke(null); |
| 401 | default: |
| 402 | return throwArity(0); |
| 403 | } |
| 404 | |
| 405 | } |
| 406 | |
| 407 | public Object invoke(Object arg1) { |
| 408 | switch(getRequiredArity()) |
nothing calls this directly
no test coverage detected