You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 5, 2024. It is now read-only.
// start with [ contains a number in between and ends with ]
nodeKey.matches("^\\[\\d+\\]$") &&
// starts with "[0" but is not "[0]" e.g. 0123 is not valid.
// *TODO collapse these two conditions into one with a
// neatly compiled REGEX.*
nodeKey.startsWith("[0") && nodeKey.equals("[0]"),
Original issue reported on code.google.com by [email protected] on 30 Jun 2011 at 7:34
Original issue reported on code.google.com by
[email protected]on 30 Jun 2011 at 7:34