WALA/com.ibm.wala.core.tests/src/com/ibm/wala
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
..
core/tests Avoid using deprecated boxing constructors 2018-06-05 14:44:59 -05:00
demandpa/driver further refactoring to enable more reuse 2018-02-05 15:18:37 -08:00
examples Resolve the last two Eclipse warnings about using raw types 2018-04-13 12:53:33 -05:00
util/io add missing copyright headers 2013-05-22 15:39:19 -07:00