WALA/com.ibm.wala.core.tests/src/com/ibm/wala/core/tests/basic
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
..
ExtensionGraphTest.java Remove redundant generic type parameters where possible 2017-03-11 21:20:51 -06:00
FloydWarshallTest.java Remove redundant generic type parameters where possible 2017-03-11 21:20:51 -06:00
GraphDataflowTest.java Remove redundant generic type parameters where possible 2017-03-11 21:20:51 -06:00
OrdinalSetTest.java Convert all Java source files to use Unix line endings; no semantic change 2012-09-04 15:56:05 -07:00
PathFinderTest.java Replace simple lambdas with method references wherever possible 2017-11-27 11:31:15 -06:00
PrimitivesTest.java Avoid using deprecated boxing constructors 2018-06-05 14:44:59 -05:00
WelshPowellTest.java Use Iterator2Iterable helper to convert more loops to for-each 2017-12-04 14:04:39 -08:00