Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2015-07-06Bug 470518 - Replace `new Boolean` with `Boolean.valueOf`Alex Blewitt1-1/+1
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 constant valued expressions with their flyweight counterparts. Bug: 470518 Change-Id: I25742c65162e57fd553dd1284ec057cd4b333dbb Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2015-07-02Bug 469765 - Prep for 4.6 (Neon) and 4.5 (Mars) maintenance buildsThomas Watson1-1/+1
- update parent poms for 4.6
2014-06-19Bug 436736 - Prep for 4.5 (Mars) and 4.4 maintenance buildsI20140729-0800I20140722-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>
2013-08-30Bug 415941 - Set 'code.ignoredWarnings' for test bundles in order to use ↵Thomas Watson1-2/+2
global build settings
2013-06-20Bug 411169 - Update parent POMs for LunaPaul Webster1-1/+1
2013-03-27Bug 403970 - Update rt.bundles and rt.framework parent versionsThomas Watson2-4/+4
2013-02-25Bug 397850 - [CBI] use the correct group IDs for all artifactsv20130225-170224I20130227-0112I20130226-2200I20130226-2100I20130226-2000I20130226-0912I20130226-0800I20130225-2315I20130225-2230Thomas Watson1-1/+1
2012-05-22Bug 379748 - Pull request for Equinox from CBIv20120522-1841Thomas Watson1-0/+26
Add poms for Tycho build
2012-05-16Bug 379732 - Include Eclipse-BundleShape in test plugin MANIFEST.MF v20120516-1854I20120520-2100I20120520-1900I20120519-2100I20120519-1900I20120518-2345I20120518-2145I20120518-1730I20120518-1530I20120517-1915I20120516-2100I20120516-1900Igor Fedorenko1-0/+1
2011-10-06Bug 360153 - Add project prefs to force unix LF on new text files.Thomas Watson1-0/+2
2011-05-02update copyrightsv20110502-1540v20110502Thomas Watson1-0/+10
2008-07-15Bug 240885 Non-ASCII chars are not properly storedv20080722-0430Oleg Besedin1-2/+7
2008-07-09Bug 235857 Enablement of the Save button on the Secure Storage preference pageOleg Besedin2-5/+3
2008-04-10Bug 226579 Array out of bounds in Base64Oleg Besedin1-0/+7
2008-04-04Bug 225843 Differ nulls and empty strings in secure preferencesOleg Besedin1-0/+50
2008-03-18Bug 222891 Need to provide versions for all public API that is exportedOleg Besedin1-1/+1
2008-03-14Bug 222074 Streamline password managementv20080316Oleg Besedin2-13/+4
2008-03-07Bug 220818 Add graduated security bundles to the buildOleg Besedin2-4/+21
2008-03-06Bug 220818 Add graduated security bundles to the buildOleg Besedin1-10/+11
2008-03-06Bug 220818 Add graduated security bundles to the buildOleg Besedin1-0/+42
2008-03-06update jre container.Thomas Watson1-2/+2
2008-02-28*** empty log message ***Matthew Flaherty27-0/+2208

    Back to the top