Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2015-09-11Bug 476814 - Replace new Integer() with Integer.valueOf()Alex Blewitt1-20/+20
Using Integer.valueOf() instead of new Integer() allows for the runtime to cache commonly instantiated values; typically, this will be for values in the range -128..127. Using valueOf is preferred for this reason. Change-Id: I1022eb4973b760b830ace5d39b76eea9353d4ca2 Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2015-09-03Bug 474074 - Replace new Boolean with Boolean.valueOfI20150908-0800Alex Blewitt1-2/+2
Using `new Boolean()` results in the creation of a new object on the heap, when the flyweight `Boolean.TRUE` and `Boolean.FALSE` are available. Java 1.4 added a `Boolean.valueOf()` which can be used in place of `new Boolean()` but which will use the existing flyweight values instead. Globally change `new Boolean(...)` to `Boolean.valueOf(...)` and replace `new Boolean(...).booleanValue()` to `Boolean.parseBoolean(...)`. Change-Id: I95bed6f2af0293c20d1ac7076ca151b85d1f962d Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2015-03-05Bug 461219 - Compile warnings in official buildI20150305-1200Sarika Sinha1-15/+12
Change-Id: I163982897460fb0618b8b69a14b09379337fabb6
2013-07-31Bug 352626 - Move platform debug to Java 1.6 BREEMike Rennie1-199/+261
2013-07-16Bug 413095 - Clean up deprecation and code warningsMike Rennie1-189/+228
2013-05-14Updated copyright dateI20130515-2000I20130514-2000Dani Megert1-1/+1
2013-02-06Bug 156134 - debug.core should reexport dependencies whose API isv20130206-164052Mike Rennie1-9/+14
exposed
2009-09-11Bug 286256 - Request to move Restart icon to core debug frameworkPawel Piech1-2/+21
2009-01-16Bug 261400 - Port the PDA example debugger's virtual machine from Perl to JavaPawel Piech8-1324/+1479
2008-02-25Bug 219633 - PDA protocol document mistake in setvar descriptionDarin Wright1-1/+1
2008-02-20Bug 217369 - PDA debugger protocol referenceDarin Wright1-0/+198
2008-01-31Bug 217211 - PDA example debugger does not run on linuxDarin Wright1-3/+9
2007-10-09release of original PDA code baseDarin Wright6-0/+1224

    Back to the top