(String url,String[] urls)
| 65 | |
| 66 | // 匹配url |
| 67 | public boolean match(String url,String[] urls){ |
| 68 | for (String item : urls) { |
| 69 | if (PATH_MATCHER.match(item, url)){ |
| 70 | return true; |
| 71 | } |
| 72 | } |
| 73 | return false; |
| 74 | } |
| 75 | } |
no outgoing calls
no test coverage detected