Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2018-11-22Bug 540371: Update to EPLv2 using releng/scripts/change_to_eplv2.shJonah Graham5-15/+30
Change-Id: Ifbb1d5af2a00bd5634dea200320e8c4303ffca6c
2016-04-16Bug 491825 - Remove primitive wrapper creationAlex Blewitt1-2/+2
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-02-11Update copyright datesMarc Khouzam1-1/+1
Change-Id: I94ac38c37657e270f62db9bbd2859c2c6de40e5f
2016-01-04Fix copyright of all CDT plugins using the copyright tool from platform.Marc Khouzam4-4/+4
This commit does not add missing copyrights, just updates the date on the existing ones. Change-Id: I646f5afd533a1fcc539bdf2e0686b22f406ecf65
2015-12-31Fixed some warningsAndrew Gvozdev3-18/+1
Change-Id: Icb6f7ba6151b55296c3f8137552a10fd7872b317 Signed-off-by: Andrew Gvozdev <angvoz.dev@gmail.com>
2011-11-17auto-clean: @Override annotations + organize imports + unnecessaryAndrew Gvozdev2-0/+4
casts/$NON-NLS + trailing white spaces
2011-04-26compilation warningsAndrew Gvozdev1-3/+1
2010-07-14bug 319777: Missing @Override annotationsAndrew Gvozdev3-0/+9
patch from Petri Tuononen
2010-04-30compilation warningsAndrew Gvozdev1-2/+3
2009-05-27update copyrightsVivian Kong1-7/+7
2009-03-13bug 254200 - use ICU4JVivian Kong1-1/+1
2006-06-23Update Copyright dates and fix those that had no copyrights.Doug Schaefer5-5/+5
2006-06-14update copyrightsChris Recoskie5-5/+5
2005-06-23CPL to EPL transistion - license header update for IBMDavid Inglis5-20/+20
2003-09-05finish up project convertion to convert old make target to new targetsDavid Inglis1-35/+0
finish up build target dialog - add/remove/delete now working - displayed as a table
2003-09-04update new build target dialogDavid Inglis1-0/+35
2003-08-13new make ui pluginsDavid Inglis5-0/+450

    Back to the top