Re: [PATCH JGIT] Method invokes inefficient Number constructor; use static valueOf instead
From: Shawn O. Pearce <hidden> Date: 2016-06-15 22:46:40
"Sohn, Matthias" [off-list ref] wrote:
Using new Integer(int) is guaranteed to always result in a new object
whereas Integer.valueOf(int) allows caching of values
to be done by the compiler, class library, or JVM. Using of cached
values avoids object allocation and the code will be faster.