()
| 106 | // A RCE finding is only reported if the ReflectiveCall sanitizer is active to give users a way to |
| 107 | // silence it. |
| 108 | public static void el() { |
| 109 | if (isSanitizerEnabled(REFLECTIVE_CALL_SANITIZER_ID)) { |
| 110 | reportFinding(); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | private void reportFindingIfEnabled() { |
| 115 | if (isSanitizerEnabled(sanitizer)) { |
nothing calls this directly
no test coverage detected