(Pattern pattern, String s)
| 84 | } |
| 85 | |
| 86 | private static Matcher match(Pattern pattern, String s) { |
| 87 | Matcher match = pattern.matcher(s.trim()); |
| 88 | if (match.matches()) { |
| 89 | return match; |
| 90 | } |
| 91 | return null; |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Scan for the first argument with a param name that matches the argname. |
no outgoing calls
no test coverage detected