Skip to main content
summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2015-09-07Bug 476724 - Remove new Boolean and Boolean.valueOf().booleanValue()I20150929-0800I20150922-0800I20150916-2000I20150916-0800I20150915-2000I20150915-0800I20150914-2000I20150914-1545I20150914-1130I20150914-0800I20150913-2000I20150908-0800Alex Blewitt1-3/+3
The new Boolean constructor creates a new instance of a Boolean object, but it can easily be replaced with Boolean.valueOf which returns the reference to the global Boolean.TRUE or Boolean.FALSE. Replace calls to new Boolean() with Boolean.valueOf() for identical semantics except without object collection. Additionally Boolean.valueOf().booleanValue() is identical to Boolean.parseBoolean() and will result in no garbage. In addition, methods will be (slightly) smaller and parseBoolean will often be in-lined by the JIT, which can often prove that the value is non-null for faster checking. Replace Boolean.valueOf().booleanValue() chains with Boolean.parseBoolean(). Some other tests can use Wrapper.valueOf() to take advantage of the built-in caches that these objects maintain (for values in the range -128..127). Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com> Change-Id: I5da4216a26ffbb6b8fd3365515ee800dd82b36ae
2015-07-02Bug 469765 - Prep for 4.6 (Neon) and 4.5 (Mars) maintenance buildsI20150818-0800I20150811-1400I20150805-2000I20150805-0800I20150804-2000I20150804-0800I20150803-2000I20150803-0800I20150802-2000I20150728-0800I20150721-0800I20150714-0800I20150707-0800Thomas Watson1-1/+1
- update parent poms for 4.6
2015-04-23Update versions for MarsThomas Watson2-2/+2
2015-02-24Bug 460627 - Fix compiler problems from generified IAdaptable#getAdapterAlexander Kurtakov3-11/+7
Generify where needed and bump the min version requirement for o.e.core.runtime and o.e.equinox.common to ensure that generified dependency will be used. Change-Id: I3e177a3c8384b5aaabe4c77c949e9802e53923b1 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2015-01-27Publish IUs listed in categories even when they are not associated to aI20150203-1300I20150129-1830I20150128-2000I20150128-0900I20150127-2000I20150127-0900Pascal Rapicault1-15/+36
category
2014-06-29Bug 436872 - [category] Specify download stats URL and type of artifactsI20140903-1100I20140902-1330I20140902-0800I20140826-0800I20140819-2200I20140819-1800I20140819-1200I20140819-0800I20140812-0800I20140806-2000I20140806-0800I20140805-2000I20140805-0800I20140804-2000I20140804-0800I20140803-2000I20140729-0800I20140722-0800I20140715-0800I20140708-0800I20140701-0800Susan McCourt1-5/+13
to monitor in category.xml Ensure that stats marking fails gracefully when artifact repository is not specified. Change-Id: I25b2882417d638ada39525e41e31b9523d6c2df7
2014-06-28Bug 436872 - [category] Specify download stats URL and type of artifactsSusan McCourt4-2/+228
to monitor in category.xml Adds an argument to MirroringApplication to mirror artifact repository properties. This is needed in order to properly export the p2.statsURI property generated in the publisher. Change-Id: I0947d6320f24ef09e67f650b765bbe3908dd382e Signed-off-by: Pascal Rapicault <pascal@rapicorp.com>
2014-06-25Bug 436318 - [category] Specify repository references in category.xmlSusan McCourt3-0/+75
Change-Id: Icf435945abb92f20e632e3f7c95ddafadd8a728d
2014-06-19Bug 436736 - Prep for 4.5 (Mars) and 4.4 maintenance buildsPaul Webster1-1/+1
Update parent versions from 4.4.0 to 4.5.0 Signed-off-by: Paul Webster <pwebster@ca.ibm.com>
2013-12-11bug 423827 - Disable "Treat above errors like fatal compile errors"I20131217-0800I20131212-1600I20131211-2000Krzysztof Daniel1-1/+25
Change-Id: If2b8652ff7deed04dea308880d444f1b4e7c6ffe Signed-off-by: Krzysztof Daniel <kdaniel@redhat.com>
2013-12-10bug 423628 - False positives warnings in the official build.I20131211-0800I20131210-2000I20131210-0800Krzysztof Daniel2-4/+9
False positives are caused by projects settings being different than build settings. Typical example is that project is configured to warn about local variable hiding a field, and suppression is added, but the regular releng build is not configured to warn, and it finds unnecessary suppression. I have did following things: * fixed warnings that I was able to fix (renamed variables, added generics, comments, etc, etc). * reduced the number of warnings in tests * commented warnings that must not be suppresed in the workspace unless we want "Unnecessary @SuppressWarnings" at build time. Change-Id: Iab2c962e5c331eab170b5f6e08d9bb29d05f0cc4
2013-11-19Bug 422026 - Get rid of ColletionUtils.empty[Set|List|Map]Alexander Kurtakov1-5/+4
Now that p2 has Java 1.5 as a minimum there is no reason to not use the JVM methods. Change-Id: I89444e8d1e174c316e2b17fb4f53bc7b1d097c0a Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2013-11-15Bug 421798 - Fix various warnings.Alexander Kurtakov1-1/+1
* Remove unneeded casts. * Remove unneeded throws. * Remove unneeded semicolons. Change-Id: I7454ea216cfc194a0d394550feecc29042d23363 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2013-11-13Bug 421339 - Accept java 1.5Krzysztof Daniel2-5/+2
Make 1.5 setting default in Eclipse (P2 is compiled as 1.5 with tycho anyway). Drop jsr14. Change-Id: I848d7865211126ad32a226914a046f9553a48f04 Signed-off-by: Krzysztof Daniel <kdaniel@redhat.com>
2013-09-03Bug 381673 - 16 compile warnings in official buildIan Bull2-2/+0
Remove uncessary unused annotations.
2013-06-26Bug 411170 -- Updated the parent poms for Luna (Eclipse 4.4)Ian Bull1-1/+1
2013-05-15Bug 407707: A number of .class files changed, after changing to M7 JDT compilerIan Bull1-0/+1
Updates two bundles because of a new JDT compiler.
2013-05-07Bug 406902I20130507-1100Mickael Istria3-10/+33
+ Fix Comparator to work with multiple levels of nested categories + Test + Updated copyright
2013-05-05Bug 406902: Allow nested category in category.xmlI20130506-2000I20130505-2000Mickael Istria3-54/+154
2013-03-27Bug 403971 - Update Equinox p2 parent versionsI20130402-0800Pascal Rapicault2-3/+4
2013-02-25Bug 397850 - [CBI] use the correct group IDs for all artifactsv20130225-185631Ian Bull1-1/+1
Upated all the pom.xml files (in the bundles) to include the proper groupID. The groupID is the first three segments of the artifactID.
2013-01-25331683 Publisher returns error status in case of invalid manifestv20130125-132342Jan Sievers1-1/+1
- BundlesAction will now return a multi-status with severity error (and details in child message(s)) in case of invalid MANIFEST or IOException. - Static helper methods createBundleDescription(), loadManifest() and basicLoadManifest() now throw BundleException and IOException instead of ignoring them. - Added corresponding ...IgnoringExceptions() methods (and marked them as deprecated) which preserve old behaviour and allow to adapt users of these methods as they see fit. Bug 331683
2012-11-21Bug 390385 - Stop the use of jsr14v20121121-194827Pascal Rapicault (Ericsson)1-2/+0
2012-09-07Added an 'unused' annotation to suppress an unused object allocationv20120907-133925I20120911-1000Ian Bull2-0/+2
2012-07-17Features can appear in more than one categoryv20120717-141420Pascal Rapicault1-2/+5
2012-07-17Improve toStringPascal Rapicault1-3/+7
2012-07-10378338 : A "bundle" element in category.xml/site.xmlMickael Istria9-66/+967
Signed-off-by: Pascal Rapicault <pascal@rapicault.net>
2012-04-12347319 Incremented version of p2.updatesite bundle for first change in releasev20120412-1615Tobias Oberlies2-2/+2
- First change happened in preceding commit d104b01
2012-04-12347319 Allow repository factories which load repositories by URNsv20120412-1504Tobias Oberlies2-4/+29
- Fix the response of the artifact/metadata repository factories in case that the location to be loaded is not a URL: the factories must return null or throw a ProvisionException with status REPOSITORY_NOT_FOUND in order to make sure that the manager continues to ask other factories. This allows to register a custom factory which for example looks up instances from a registry by uniform resource *identifiers* which are not uniform resource *locators*. - Added a test for loading from a custom, registry based repository factory. Bug: 347319 - [repository] SimpleArtifactRepositoryFactory prevents loading repositories from non-URL URIs
2011-08-01304594 Fix obvious POM configuration issuesTobias Oberlies1-2/+3
- Correct relativePath to parent POM. - Use recommended version format in POMs: A version with automatically replaced qualifier maps to a SNAPSHOT version in the POMs.
2011-07-20Changed .cvsignore to .gitignore filesJohn Arthorne2-2/+1
2011-05-08Fix up plugin user readable namePascal Rapicault1-1/+1
2011-05-02copyright updatev20110502-1955v20110502-1930Ian Bull12-12/+12
2011-04-01Adding back removed methodPascal Rapicault1-4/+2
2011-03-05NEW - bug 301903: Consider a file level lock during batch executionv20110305-0130Ian Bull2-3/+48
https://bugs.eclipse.org/bugs/show_bug.cgi?id=301903
2011-02-28Bug 336246 - Remove the metadata generatorPascal Rapicault1-1/+0
2011-02-17Update version numbers in poms.Pascal Rapicault1-1/+1
2011-01-27Bug 335414 - Site parsing errors should mention the URL of the site being ↵DJ Houghton1-6/+4
parsed and erroneous bit of XML for easier debuggery
2011-01-19Bug 324873 - [repository] Share IUs for Composite RepositoriesDJ Houghton1-1/+9
2010-12-25Bug 321819 - [transport] Repository transport API is tightly coupled with ↵v20110104v20110102Pascal Rapicault5-33/+43
the implementation
2010-08-26Bug 244628 - [api] [repository] artifact repos do not support bulk removeDJ Houghton2-1/+9
2010-08-21Bug 313454 - [publisher] Add a new flag to the ↵Pascal Rapicault1-0/+18
UpdateSitePublisherApplication to generate the JRE's IU
2010-08-17Add target folderv20101119Pascal Rapicault1-1/+2
2010-04-24bug 277340: [publisher] Category publishing only publishes one version of a ↵v20100424-0100Ian Bull1-7/+7
feature https://bugs.eclipse.org/bugs/show_bug.cgi?id=277340
2010-04-23bug 310338 - increase category suffix lengthAndrew Niefer1-1/+1
2010-04-22bug 309624 - Updatesite Build generates wrong categoriesAndrew Niefer1-10/+27
2010-04-06Bug 305334 - MetadataFactory.InstallableUnitDescription - method name ↵Pascal Rapicault1-1/+1
refactoring
2010-03-30cleanup manifestPascal Rapicault1-14/+3
2010-03-20Adding pom files to allow build with tychoPascal Rapicault1-0/+14
2010-03-09bug 301902: [api] Add an executeBatch to the MetadataRepositoryv20100311-1400ibull1-0/+9
https://bugs.eclipse.org/bugs/show_bug.cgi?id=301902

Back to the top