Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2016-06-28Bug 496465 - Prep for 4.7 (Oxygen) and 4.6.1 (Neon.1) maintenance buildsY20160721-1000Y20160714-1000I20160726-1400I20160726-0800I20160719-0800I20160716-1900I20160712-1000I20160712-0800I20160708-1700Sarika Sinha1-2/+2
Change-Id: I799dcb17afa68adac07d9c5e624684da63793c7f
2016-04-19Bug 490012 - Remove the "strictly compatible JRE" per-project overrideY20160421-1000Stefan Xenos1-2/+0
Change-Id: Ic5ea8bbb786f0e51757bc0f416430463464db970 Signed-off-by: Stefan Xenos <sxenos@gmail.com>
2015-09-11Bug 476814 - Replace new Integer() with Integer.valueOf()Alex Blewitt2-24/+24
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-07-02Bug 469765: Prep for 4.6 (Neon) and 4.5 (Mars) maintenance builds - update ↵I20150707-0800Markus Keller1-1/+1
parent poms for 4.6
2015-03-05Bug 461219 - Compile warnings in official buildI20150305-1200Sarika Sinha5-46/+20
Change-Id: I163982897460fb0618b8b69a14b09379337fabb6
2015-03-02Bug 461103 - build failure in N20150227-2000 related to ?maven tests?Sarika Sinha3-3/+3
Change-Id: I9f1028df065d20bb3e1cf25c30a122e1b7371687
2015-02-27Bug 461029 - Move Platform Debug project to 1.7 complianceSarika Sinha4-7/+8
Change-Id: Ie29a60a934f7696ad5d8da9513489c5a9b925216
2014-06-19Bug 436736 - Prep for 4.5 (Mars) and 4.4 maintenance buildsI20140722-0800I20140715-0800I20140708-0800I20140701-0800Paul Webster1-1/+1
Update parent versions from 4.4.0 to 4.5.0 Signed-off-by: Paul Webster <pwebster@ca.ibm.com>
2014-05-27fixed mixed line delimitersMarkus Keller1-1/+2
2013-08-19[nobug] removed unused SuppressWarnings + sync / update compilerI20130820-0800Mike Rennie1-4/+4
settings
2013-08-06[nobug] fill in bundle vendor infos in example pluginsMike Rennie2-2/+4
2013-07-31Bug 352626 - Move platform debug to Java 1.6 BREEMike Rennie66-488/+750
2013-07-17Bug 409456 - Get rid of discouraged access warningsI20130730-0800I20130724-1600I20130723-0800I20130717-1600Mike Rennie1-3/+3
2013-07-16Bug 413095 - Clean up deprecation and code warningsMike Rennie68-619/+1108
2013-06-26Bug 411166 - Update parent POMs for LunaPaul Webster1-1/+1
2013-05-14Updated copyright dateI20130515-2000I20130514-2000Dani Megert1-1/+1
2013-04-02[nobug] Set PDE POM check pref to errorI20130416-0800I20130409-0900I20130409-0800Mike Rennie1-0/+1
2013-04-02Fix POM versionsCurtis Windatt1-1/+1
2013-04-01[nobug] provide project-specific API Tools settingsI20130402-0800Mike Rennie2-1/+98
2013-03-27Force qualifier update files are unnecessaryCurtis Windatt1-2/+0
2013-03-27Bug 403964 - Update Platform Debug parent versionCurtis Windatt2-4/+4
2013-03-20[nobug] decrease severity of compatible JRE checkMike Rennie2-2/+2
2013-02-25Bug 399451 - Some projects have incorrect encoding setv20130225-190314Mike Rennie1-0/+2
2013-02-25update copyright to include "and others"Mike Rennie1-1/+1
2013-02-25Bug 397850 - [CBI] use the correct group IDs for all artifactsMike Rennie1-2/+2
2013-02-06Bug 156134 - debug.core should reexport dependencies whose API isv20130206-164052Mike Rennie1-9/+14
exposed
2012-05-21Add poms for Tycho buildv20120521-2012I20120529-2100I20120529-1900I20120528-2100I20120528-1900I20120527-2100I20120527-1900I20120526-1900I20120525-1900I20120525-1400I20120524-2300I20120524-2100I20120523-2100I20120523-1900I20120522-2100I20120522-1900I20120521-2100I20120521-1900Igor Fedorenko1-0/+25
2012-04-12[nobug] synchronize PDE compiler settings + adjust JavaDoc processingv20120412-1646Mike Rennie3-74/+161
prefs
2012-03-01[nobug] remove defunct .cvsignore filesv20120301-1551Mike Rennie1-1/+0
2011-10-07Changed 'New text file line delimiter' to 'Unix'.Dani Megert1-0/+2
2011-07-06[nobug] remove Javadoc warnings and NLS manifest + plugin.xmlMichael Rennie7-40/+63
2011-05-05synchronize Javadoc processing preferences for all debug test / example bundlesMichael Rennie1-1/+15
2011-05-05Copyright updatesMichael Rennie4-4/+4
2011-02-02Update project settings to make EE / JRE exact match problems an errorMichael Rennie2-1/+15
2010-10-21Bug 328295 - Launch button disabled after failed launchDarin Wright1-1/+21
2010-09-24Bug 326152 - [Memory View] new monitors added while Memory view is hidden or ↵Darin Wright3-3/+84
closed are not shown in the tree
2010-02-09Bug 302285 - Examples bundles do not have qualifiersDarin Wright1-1/+1
2009-12-14Fix warnings in build.propertiesDarin Wright1-4/+5
2009-09-11Bug 286256 - Request to move Restart icon to core debug frameworkPawel Piech4-3/+68
2009-03-31updated copyrightsMichael Rennie1-1/+11
2009-02-26Fixed an NPE in the example.Pawel Piech1-1/+6
2009-02-06Changed the protocol package name to go under pda.Pawel Piech61-131/+131
2009-02-06Simplified filename usage.Pawel Piech1-3/+5
2009-01-26Fix compiler warnings for the I-buildDarin Wright3-4/+0
2009-01-20Fixed bug related to PDA line numbers.Pawel Piech1-1/+1
2009-01-17Removed a left-over debug trace.Pawel Piech1-1/+0
2009-01-16Bug 261400 - Port the PDA example debugger's virtual machine from Perl to JavaPawel Piech76-1703/+4255
2008-09-25Bug 212316 - Allow multiple debuggers to create breakpoints using the same ↵Pawel Piech2-3/+4
editor.
2008-09-12fixed fall-through switch casesMichael Rennie1-0/+3

Back to the top