Andrew John Hughes writes: > This fixes bugs in our parsing in javax.management.ObjectName > so that we pass all the tests recently committed to Mauve > for parsing.
> > @@ -927,10 +933,12 @@ public class ObjectName > { > n = q.charAt(++a); > if (n != '"' && n != '?' && n != '*' && > - n != '\n' && n != '\\') > + n != 'n' && n != '\\') What does this hunk do? We're now checking for "\n" in a quoted string rather than an escaped newline? Are escaped newlines not allowed? Andrew.