The JVM can only do this sort of thing if the object doesn't escape scope -- totally local. This wouldn't be possible here.
On Mon, Apr 15, 2013 at 12:55 AM, Ted Dunning <[email protected]> wrote: > Did you mark the class and fields all as final? > > That might help the compiler realize it could in-line stuff and avoid the > constructor (not likely, but possible) >
