(String s)
| 351 | do { |
| 352 | Pattern p = Pattern.compile("\\[\\[__(.+?)__:(.+?) (.+?)\\]\\]", Pattern.DOTALL); |
| 353 | Matcher m = p.matcher(s); |
| 354 | if (m.find()) { |
| 355 | String groupName = m.group(1); |
| 356 | String groupValue = m.group(2); |
| 357 | String groupPayload = m.group(3); |
| 358 | |
| 359 | if (!prev.containsKey(groupName) || !prev.get(groupName) |
| 360 | .equals(groupValue)) { |