Using the latest Java bundle, strings are not highlighted correctly:
public class Foo { void bar(Object baz) { throw new RuntimeException(baz.toString() + "; void"); } }
Trevor
On 31/08/2008, at 1:28 PM, Trevor Harmon wrote:
Using the latest Java bundle, strings are not highlighted correctly:
public class Foo { void bar(Object baz) { throw new RuntimeException(baz.toString() + "; void"); } }
Fixed, thanks.
This was actually a trickier case where the ')' that was part of the toString() call was actually terminating the pattern initiated from the '(' in RuntimeException(…
--
LD.