On Thu, 23 Dec 2004 14:02:45 -0500, Inger, Matthew <[EMAIL PROTECTED]> wrote: > I have made the following changes in the StrTokenizer class: > > 1. The "ignoredMatcher", now performs as it's name suggests, in that > it will indicate any characters which are to be completely ignored. Any > characters which match will be omitted from any token. This is a good > way to ignore control characters, tabs, etc.... The default is to not > to > ignore any characters. >
The removed line in readNextToken of: (ignoreLen = ignored.isMatch(chars, len, start)) >= 1 means that the unit tests now infinite loop there: ignoredLen is 0, so start += ignoredLen never gets off of 0. Just putting the line back in doesn't fix it, though it does stop it infinite looping. So I've put it back in. Line 708. Hen --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
