WALA/com.ibm.wala.shrike/src/com/ibm/wala/shrike
Ben Liblit 5336a08af2 Avoid using deprecated boxing constructors
Boxing a primitive using the constructor ("new Integer(4)") always
creates a distinct new boxed instance.  That's rarely what you need,
and in fact all of those constructors have been deprecated in Java 9.
Using the static "valueOf" method instead ("Integer.valueOf(4)") can
give better performance by reusing existing instances.  You no longer
get a unique boxed object, but generally that's OK.
2018-06-05 14:44:59 -05:00
..
bench Convert a few more loops into modern for-each loops 2017-12-04 14:04:39 -08:00
cg Avoid using deprecated boxing constructors 2018-06-05 14:44:59 -05:00
copywriter Merge branch 'master' into modernization-java-8-lambdas-and-method-references 2017-11-29 10:51:33 -06:00
instrumentation Don't put fixed-name, writable files into "java.io.tmpdir" 2018-04-18 11:29:29 -05:00