(String line)
| 121 | } |
| 122 | |
| 123 | static Long extractScriptId(String line){ |
| 124 | Matcher m = RUN.matcher(line); |
| 125 | if (m.matches()) { |
| 126 | return Long.valueOf(m.group(1)); |
| 127 | } |
| 128 | return null; |
| 129 | } |
| 130 | |
| 131 | static String extractScript(String text){ |
| 132 | Matcher m = SCRIPT.matcher(text); |
no outgoing calls