1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 06:45:43 +02:00
cdt/dsf/org.eclipse.cdt.tests.dsf
Alex Blewitt fc07efa909 Bug 491825 - Remove primitive wrapper creation
Using `new Integer` and other wrapper types such as `new Character` results in
potential extra heap utilisation as the values are not cached. The built-in
`Integer.valueOf` will perform caching on numbers in the range -128..127 (at
least) using a flyweight pattern. In addition, parsing `int` values can be done
with `Integer.parseInt` which avoids object construction.

Adjust tests such as `"true".equals(expr)` to `Boolean.parseBoolean(expr)`.

Change-Id: I0408a5c69afc4ca6ede71acaf6cc4abd67538006
Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2016-04-16 12:17:48 -04:00
..
.settings Move some leftover plugins from Java 5 to Java 7. 2015-03-25 13:42:20 -04:00
META-INF Move some leftover plugins from Java 5 to Java 7. 2015-03-25 13:42:20 -04:00
src/org/eclipse/cdt/tests/dsf Bug 491825 - Remove primitive wrapper creation 2016-04-16 12:17:48 -04:00
.classpath Move some leftover plugins from Java 5 to Java 7. 2015-03-25 13:42:20 -04:00
.cvsignore Migrated DSF and DSF-GDB to the CDT project. 2009-01-08 21:08:05 +00:00
.project Migrated DSF and DSF-GDB to the CDT project. 2009-01-08 21:08:05 +00:00
about.html Migrated DSF and DSF-GDB to the CDT project. 2009-01-08 21:08:05 +00:00
build.properties update copyright 2009-06-16 21:36:53 +00:00
plugin.properties fix legal, provider info 2009-06-16 21:37:21 +00:00
plugin.xml Bug 202556 - [variables][registers][expressions] Allow setting of numeric format for individual variables in the view. 2011-03-04 16:06:51 +00:00
README.txt Bug 469926: Update readme from CVS to GIT URLs 2015-06-11 13:01:58 +01:00

This plugin depends on Eclipse performance test plugins which are not available via update sites.

Find the org.eclipse.test and org.eclipse.test.performance[.win32] plugins via GIT at:

	https://git.eclipse.org/c/platform/eclipse.platform.releng.git/
	(The GIT URLs are at the bottom of the page)