WALA/com.ibm.wala.cast.java.test...
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
..
.externalToolBuilders switch to ant for downloading external dependence. also, added ant as a builder, so hopefully files will be downloaded automatically 2011-03-10 20:23:48 +00:00
.settings Disable some Eclipse warnings on Java test inputs 2018-04-18 11:29:25 -05:00
META-INF Bump version to 1.5.0-SNAPSHOT before merging with WALA master 2018-04-18 11:29:29 -05:00
OSGI-INF/l10n Externalize bundle names and vendors 2017-06-07 17:42:11 +02:00
src Avoid using deprecated boxing constructors 2018-06-05 14:44:59 -05:00
.gitignore ignore junk 2012-07-02 13:59:50 -04:00
Java60RegressionExclusions.txt complete conversion to Unix line endings 2012-09-04 16:05:49 -07:00
build.gradle Load plugins using "plugins" closure rather than "apply plugin" 2018-05-23 16:47:58 -05:00
build.properties Set required build property for project-specific compiler settings 2017-09-17 14:25:40 -07:00
build.xml Update more parts of the build configuration to use Java 8 2017-11-26 18:46:00 -06:00
pom.xml Bump version to 1.5.0-SNAPSHOT before merging with WALA master 2018-04-18 11:29:29 -05:00