()
| 37 | executor.submit(new Runnable() { |
| 38 | |
| 39 | @Override |
| 40 | public void run() { |
| 41 | try { |
| 42 | ApiType apiType = (ApiType) apiTypeConstructor.apply(baseRequestResponse, isPassive); |
| 43 | if (apiType.isFingerprintMatch().booleanValue()) { |
| 44 | apiTypes.add(apiType); |
| 45 | } |
| 46 | } catch (Exception e) { |
| 47 | BurpExtender.getStderr().println(CommonUtils.exceptionToString(e)); |
| 48 | } |
| 49 | } |
| 50 | }); |
| 51 | } |
| 52 | executor.shutdown(); |
nothing calls this directly
no test coverage detected