https://bz.apache.org/bugzilla/show_bug.cgi?id=57840
--- Comment #22 from Javen O'Neal <[email protected]> --- Doing some Google searching, it looks like using new Integer(int) rather than Integer.valueOf (the explicit version of implicit auto-boxing) may use more memory due to duplicated objects wrapping primitives, but is faster because it doesn't look up lookup cached values to save this memory. Did you notice any performance difference changing the boxing on the code relating to this bug? -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
