WALA/com.ibm.wala.scandroid/source/org/scandroid
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
..
domain Fix Eclipse warnings about unused method parameters 2017-05-26 14:25:03 -07:00
flow rename getNumberOfParameters to getNumberOfPositionalParameters since the Python front end now supports keyword parameters 2018-04-12 19:09:25 -04:00
model Avoid using deprecated boxing constructors 2018-06-05 14:44:59 -05:00
prefixtransfer Use modern for-each loops where possible 2017-11-28 14:44:53 -06:00
spec more work for reuse 2018-02-14 09:00:07 -05:00
synthmethod rename getNumberOfParameters to getNumberOfPositionalParameters since the Python front end now supports keyword parameters 2018-04-12 19:09:25 -04:00
util further refactoring to enable more reuse 2018-02-05 15:18:37 -08:00