(String methodName)
| 1622 | |
| 1623 | |
| 1624 | protected void handleMethods(String methodName) { |
| 1625 | synchronized (registerLock) { |
| 1626 | RegisteredMethods meth = registerMap.get(methodName); |
| 1627 | if (meth != null) { |
| 1628 | meth.handle(); |
| 1629 | } |
| 1630 | } |
| 1631 | } |
| 1632 | |
| 1633 | |
| 1634 | protected void handleMethods(String methodName, Object[] args) { |
no test coverage detected