Forgive me if this has already been logged or fixed.
In M7 version of the code base – for code completion in JSP pages, when you code complete java, it fails to add parenthesis. For example if I had:
Object foo = new Integer(2);
foo.toS<cursor here>
and I try for code completion and choose toString(), I will then have:
Object foo = new Integer(2);
foo.toString<cursor here>
rather than:
Object foo = new Integer(2);
foo.toString()
as I would in the java editor.