Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2021-04-28Bug 572447 - Update to Ant 1.10.10S4_20_0_RC2aS4_20_0_RC2S4_20_0_RC1S4_20_0_M3R4_20I20210611-1600I20210610-1250I20210610-1220I20210610-0400I20210609-0520I20210609-0400I20210609-0220I20210603-0040I20210602-1800I20210602-0600I20210601-1800I20210601-0600I20210531-1800I20210531-0600I20210530-1800I20210529-1800I20210529-0600I20210528-1800I20210526-2310I20210526-1800I20210526-0600I20210525-1800I20210525-0730I20210524-1800I20210524-0600I20210523-1800I20210523-0600I20210522-1800I20210522-0600I20210521-1800I20210521-0150I20210521-0110I20210519-1800I20210519-0600I20210518-1800I20210518-0850I20210518-0600I20210518-0200I20210517-1800I20210517-0600I20210516-1800I20210516-0600I20210515-1800I20210515-0600I20210514-1800I20210513-1800I20210512-2250I20210512-1800I20210511-1800I20210511-0740I20210511-0330I20210511-0200I20210510-1800I20210509-1800I20210508-1800I20210507-1800I20210506-1800I20210505-1800I20210505-0510I20210505-0100I20210504-1800I20210503-1800I20210502-1800I20210502-0730I20210501-1800I20210430-1800I20210429-1800I20210429-0600I20210428-1800I20210428-0330I20210428-0040R4_20_maintenanceSarika Sinha3-7/+7
Change-Id: I5c28488691adc7dbeb6af132a08733a052a715ba Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform/+/179854 Tested-by: Sarika Sinha <sarika.sinha@in.ibm.com> Reviewed-by: Sarika Sinha <sarika.sinha@in.ibm.com>
2021-04-15[dogfooding][cleanup] Use static inner class clean upI20210427-1800I20210426-2110I20210426-1800I20210425-1800I20210424-1800I20210423-1800I20210423-0350I20210423-0140I20210422-1800I20210421-1800I20210420-1800I20210420-0500I20210420-0240I20210418-1800I20210417-2330I20210416-1800I20210416-0810I20210415-1800Lars Vogel9-11/+11
Using this cleanup brings: - It reviews the feature - For optimization: small memory usage reduction as the outer pointer is removed Change-Id: Id4094687f9ada9d04afc9fda4e399d07f94c6716 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com> Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform/+/178705 Tested-by: Platform Bot <platform-bot@eclipse.org>
2021-04-094.20 update for update/org.eclipse.update.configuratorI20210415-0010I20210414-1800I20210414-0330I20210413-2350I20210413-1800I20210413-1400I20210412-2130I20210412-1800I20210411-1800I20210410-1800I20210410-0630I20210409-2140I20210409-1800Lars Vogel2-2/+2
Required for https://git.eclipse.org/r/c/platform/eclipse.platform/+/178705 Change-Id: I1495b3646fc228e417249a98d580666e17a89c11
2021-03-29Bug 571687 - Splash screen for 4.20 (2021-06)S4_20_0_M1I20210407-1800I20210407-0600I20210407-0040I20210406-1800I20210406-0600I20210405-1800I20210405-0840I20210405-0630I20210405-0600I20210404-1800I20210404-0600I20210403-1800I20210403-0600I20210402-1800I20210402-0510I20210331-1800I20210330-1800I20210329-1800Sravan Kumar Lakkimsetti2-2/+2
- Adjusted location of build id Change-Id: I0f86e6dcceb113381d8ad5101e545b6ba9c5911d Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
2021-03-26Apply "Primitive parsing" JDT cleanup to eclipse.platformI20210329-0200I20210328-1800Lars Vogel5-11/+11
A boxed primitive is created from a String, just to extract the unboxed primitive value.It is more efficient to just call the static parseXXX method. Before: int number = Integer.valueOf("42", 8); new Double("42.42").doubleValue(); After: int number = Integer.parseInt("42", 8); Double.parseDouble("42.42"); Change-Id: I61eac0e17dbd3c44ad8d07e430cd6041dfa0d485 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2021-03-18Remove redundant type declarations.I20210327-1800I20210326-1800I20210325-1800I20210324-1800I20210324-0950I20210324-0320I20210323-2250I20210323-1800I20210323-1240I20210323-0200I20210322-1800I20210321-1800I20210321-0340I20210320-1800I20210320-0650I20210319-1800I20210319-0030I20210318-2320I20210318-2100Alexander Kurtakov2-4/+4
Change-Id: I73d1ffc34df0c96389b5437d56e6c0789be7afdf Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2021-03-18Move away of deprecated new Integer()Alexander Kurtakov1-1/+1
Change-Id: Ic89cce16a4b6b879cfbff417db1226a14955a1d9 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2021-03-18Bug 572083 - Move ant bundles to Java 11 BREEAlexander Kurtakov20-65/+165
o.e.ant.ui and o.e.ant.launching already have requirements that have Java 11 BREE so they have to be moved. This leaves o.e.ant.core which would better be kept in sync with rest of ant bundles. Change-Id: If71402464080b15361ba00b254497a1f527396eb Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2021-03-18Point to 4.20 platform migration docs in welcome page.Alexander Kurtakov1-2/+2
Change-Id: I1c63b54b7e1949b362ff14b833a750f87f728f04 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2021-03-18Move o.e.platform to Java 11 BREEAlexander Kurtakov4-11/+26
Change-Id: I8510b901b9a2504a1675397b92e22feed1f1efd7 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2021-03-05Bug 571689 - POM and product version change for 4.20 releaseI20210317-1850I20210317-1320I20210317-0910I20210317-0650I20210317-0330I20210316-1800I20210315-2050I20210314-1800I20210313-1800I20210312-2010I20210312-1800I20210312-1540I20210312-1410I20210312-1150I20210312-0940I20210312-0840I20210311-1800I20210310-2050I20210310-0620I20210310-0250I20210309-1800I20210309-0500I20210308-1800I20210308-1030I20210308-0720I20210305-0820Alexander Kurtakov12-12/+12
Change-Id: I106fe8a555619dc5d99fbc218c62b472cce7fe18 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2021-03-05Bug 571687 - Splash screen for 4.20 (2021-06)Sravan Kumar Lakkimsetti15-2/+2
Change-Id: I9dbf82362392ea4f4f1c3650e0bbb58ee9e9bc0c Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
2021-02-21Bug 571301 - Copyright needs to updated to 2021Y20210316-1310Y20210316-0510Y20210315-1000Y20210314-1000Y20210313-1000Y20210312-2250Y20210312-1250Y20210312-1000Y20210311-1000Y20210310-1000Y20210309-1000Y20210307-1000Y20210306-1000Y20210305-1000Y20210304-1000Y20210303-1000Y20210301-1000Y20210228-1000Y20210227-1000Y20210226-1000Y20210225-1000Y20210224-1000Y20210223-1050Y20210222-1000Y20210221-1000S4_19_0_RC2S4_19_0_RC1R4_19I20210303-1800I20210303-0600I20210302-1800I20210302-0930I20210302-0720I20210302-0600I20210301-1800I20210301-0600I20210228-1800I20210228-0600I20210227-1800I20210227-0600I20210226-2140I20210226-1800I20210226-0220I20210224-1800I20210224-0840I20210224-0600I20210223-1800I20210223-0650I20210223-0600I20210222-1800I20210222-0600I20210221-1800R4_19_maintenanceSravan Kumar Lakkimsetti4-8/+8
Change-Id: I2b46739ab86d1fe85bfbd6a62541b332d1182ade Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
2021-02-19Bug 571357 - Update JDT and Platform porting guide links for 4.19 inY20210220-1000I20210221-0600I20210220-1800I20210220-0600I20210219-1800Kalyan Prasad Tatavarthi1-2/+2
Welcome page Change-Id: I61eac07748aabd86b4d657431e26749221ed0013 Signed-off-by: Kalyan Prasad Tatavarthi <kalyan_prasad@in.ibm.com>
2021-02-06doogfooding use String.joinY20210219-1000Y20210218-1000Y20210217-1000Y20210216-1000Y20210215-1020Y20210214-1000Y20210213-1200Y20210212-1200Y20210211-1200Y20210211-0600Y20210210-1200Y20210210-0100Y20210209-1200S4_19_0_M3I20210219-0300I20210217-1800I20210217-0600I20210216-2020I20210216-1800I20210216-1340I20210216-1140I20210216-1030I20210216-0600I20210215-1800I20210215-0700I20210215-0600I20210214-1800I20210214-0600I20210213-1800I20210213-0600I20210212-1840I20210211-1810I20210210-1800I20210210-0910I20210209-1800I20210208-1800I20210207-1800I20210206-1800Carsten Hammer1-7/+1
Change-Id: I3f67ca8e434062233ddec2e4b71b5865a0ec4ee9 Signed-off-by: Carsten Hammer <carsten.hammer@t-online.de>
2021-02-06Bump version for 4.19Carsten Hammer2-2/+2
Change-Id: Idd455ec23203f0c4a4043430869162ce1d8ed49f Signed-off-by: Carsten Hammer <carsten.hammer@t-online.de>
2021-01-15Ant: Don't use AbstractUIPlugin#getDialogSettingsY20210205-1200Y20210202-1200Y20210129-1200Y20210127-0710Y20210126-1200Y20210123-0110I20210206-0720I20210206-0050I20210205-1800I20210204-2320I20210204-1800I20210204-1430I20210204-1300I20210204-1100I20210204-0900I20210204-0300I20210203-1800I20210202-1840I20210201-1800I20210131-1800I20210130-1800I20210129-1800I20210128-1800I20210127-1800I20210126-1800I20210125-1800I20210124-1800I20210123-1800I20210123-0020I20210121-2140Matthias Becker4-22/+15
JavaDoc of this method says it should no longer be used. This is one step further to remove Activators. Change-Id: Ic6bc750e6db5ab69f66cd2bf536d89c2ebb7a951
2021-01-08Bug 517227 - [Tests] testVerboseStackTrace failsY20210115-1200Y20210113-0120Y20210112-1200I20210120-1800I20210120-1400I20210118-1800I20210117-1940I20210117-1800I20210116-1800I20210116-0340I20210115-1810I20210114-1800I20210114-0510I20210114-0310I20210112-1800I20210112-0850I20210111-1800I20210110-1800I20210109-1830I20210108-1800Sarika Sinha3-5/+11
Change-Id: I548cba5daf340b5ec85f9a2566e01e81d6c1acc6
2020-12-04Bug 569316 - Splash screen for 4.19 (2021-03)Y20210108-1200Y20210105-1200Y20210101-1200Y20201229-1200Y20201229-0040Y20201225-1200Y20201222-1200Y20201218-1200Y20201215-1200Y20201211-1200Y20201209-0750Y20201208-1200Y20201204-1200S4_19_0_M1I20210108-0220I20210106-1800I20210106-0600I20210105-1800I20210105-0600I20210104-1800I20210104-0600I20210103-1800I20210103-0600I20210102-1800I20210102-0600I20210101-1800I20210101-0720I20201231-1800I20201230-2150I20201230-1800I20201229-1800I20201228-1800I20201227-1800I20201226-1800I20201226-0940I20201225-1800I20201225-0450I20201225-0130I20201224-1800I20201223-1800I20201222-1800I20201221-1800I20201220-1800I20201219-1800I20201218-1800I20201217-1800I20201216-2110I20201215-1800I20201214-1800I20201213-1800I20201212-1800I20201211-1800I20201210-1800I20201209-1800I20201208-2310I20201208-1800I20201208-0300I20201207-1800I20201206-1800I20201205-1800I20201204-1800I20201204-0830I20201204-0610I20201204-0340Sravan Kumar Lakkimsetti1-0/+0
Change-Id: Idb632daef2eb11a93b3afc3ab2ea2ce96ac2a3e1 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
2020-12-01Bug 569318 - POM and product version change for 4.19 releaseSravan Kumar Lakkimsetti12-12/+12
Change-Id: I914f267f77c339a93ef47d5ebdad5e7ec6b02665 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
2020-11-20Bug 568875 - Update JDT and Platform porting guide links for 4.18 in Welcome ↵Y20201201-1200Y20201127-1200Y20201124-1200Y20201120-1200S4_18_0_RC2S4_18_0_RC1R4_18I20210122-0800I20210122-0630I20210122-0420I20201202-1800I20201202-0600I20201201-1800I20201201-0600I20201130-1800I20201130-0600I20201129-1800I20201129-0600I20201128-1800I20201128-0600I20201128-0300I20201127-1800I20201127-1010I20201127-0630I20201125-1800I20201125-0600I20201124-1800I20201124-0600I20201123-1800I20201123-0600I20201122-1800I20201122-0600I20201121-1800I20201121-0600I20201120-1800R4_18_maintenanceKalyan Prasad Tatavarthi1-2/+2
page Change-Id: Ia4d26594532c99feae97d49bc8f1152a7d3c5000 Signed-off-by: Kalyan Prasad Tatavarthi <kalyan_prasad@in.ibm.com>
2020-11-16Stop using deprecated AbstractUIPlugin.getDialogSettings()Y20201117-1200S4_18_0_M3I20201120-0320I20201119-0730I20201118-1800I20201118-0600I20201117-1800I20201117-0600I20201116-1800Alexander Kurtakov9-24/+34
Change-Id: I943de01bdfaaad8fb2c1f03b6abd736234ab1768 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2020-11-16Version bumps for 4.18 stream.I20201116-0600Alexander Kurtakov4-4/+4
Bundles changed but version hasn't. Change-Id: Ie337cc1f9d99c3c0200d84d0d34aa586a4772b95 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2020-11-09Bug 567426 - Update to Ant 1.10.9Y20201113-1200Y20201111-0210Y20201110-1200Y20201109-1200I20201115-1800I20201115-0600I20201114-1800I20201114-0740I20201114-0600I20201113-1800I20201112-1800I20201111-1800I20201110-1800I20201109-1800Sarika Sinha3-10/+10
Change-Id: I7097f3e82e0a33bb3059751813be24c272f00eb4
2020-10-26Bug 568204 - Bump version to 3.16Y20201109-0220Y20201108-1200Y20201107-1200Y20201106-1200Y20201105-1200Y20201104-1200Y20201103-1200Y20201102-1200Y20201101-1200Y20201031-1200Y20201030-1200Y20201029-1200Y20201028-1200I20201108-1800I20201107-1800I20201107-0750I20201106-1800I20201106-0710I20201105-1800I20201105-0230I20201104-1800I20201103-1800I20201103-0030I20201102-1910I20201101-1800I20201031-1800I20201030-1800I20201029-1800I20201028-1800I20201028-0800I20201028-0610I20201028-0130I20201028-0020I20201027-2350I20201027-1800Alex Blewitt1-1/+1
By introducing a new call to `Platform.getLog` which depends on org.eclipse.core.runtime 3.16, bump the version in the MANIFEST.MF so that the dependency versions are correct. Change-Id: I99d8d04e0b687c5c9da4caaec901d885e770382a
2020-10-26Bug 568204 - Replace Platform.getBundle with Platform.getLogY20201027-1200Y20201026-1200I20201026-1850I20201026-0840Alex Blewitt1-5/+1
The caller in LaunchUpdateIntroAction uses Platform.getBundle in a cold path in order to get hold of the platform log. However, this requires looking up the bundle by name, when we already have a means to acquire the log directly from the Platform, so use that instead. Instead of using `log.(new Status)` use the default method `error` which does the same thing and is more compact. Change-Id: I822898f0ed91ed43a0390a4c0436024f93486bfd
2020-09-22Remove color dispose in Ant ColorManagerY20201025-1200Y20201024-1200Y20201023-1200Y20201021-1200Y20201020-1200Y20201019-1200Y20201018-1200Y20201017-1200Y20201016-1200Y20201015-1200Y20201014-1200Y20201013-1200Y20201012-1200Y20201011-1200Y20201010-1200Y20201009-1200Y20201008-1200Y20201006-1200Y20201002-1200Y20201001-1200Y20200930-1200Y20200929-1200Y20200929-0550Y20200928-1200Y20200928-0700Y20200928-0600S4_18_0_M1aS4_18_0_M1I20201026-0650I20201025-1800I20201025-0040I20201024-1800I20201023-1800I20201023-0250I20201021-1800I20201021-0200I20201020-1800I20201020-0240I20201019-1800I20201018-1800I20201017-1800I20201016-1800I20201016-0000I20201015-1800I20201014-1800I20201013-1800I20201012-1800I20201012-0750I20201012-0320I20201011-1800I20201010-1800I20201009-1800I20201009-0800I20201009-0430I20201007-1800I20201007-1320I20201007-0600I20201006-1800I20201006-0840I20201006-0600I20201005-1800I20201005-0600I20201004-1800I20201004-0600I20201003-1800I20201003-0600I20201002-1800I20201001-1800I20200930-1800I20200929-1800I20200928-1800I20200927-1800I20200926-1800I20200925-1800I20200924-1800I20200924-0430I20200924-0340I20200922-1800Lars Vogel1-6/+0
It is not necessary anymore to call dispose on Colors since Bug 563018. Change-Id: I1d2febd2bc257e469cfe952fcb8a3fb3cb8a8292
2020-09-224.18 update for org.eclipse.ant.uiLars Vogel2-2/+2
Required for pending Gerrits Change-Id: I77d00c11db77444cfa244c3f35dd5a577d8839a5
2020-09-07Bug 564239 - Resolves ancient TODO about an unnecessary checkI20200921-1800I20200920-1800I20200919-1800I20200918-1800I20200917-1800I20200916-1800I20200916-0410I20200915-1800I20200914-1800I20200913-1800I20200912-1800I20200912-0010I20200911-1800I20200910-1800I20200910-0100I20200909-1800I20200908-1800I20200908-0440Lars Vogel3-8/+0
Cleanup to make move to new home easier Change-Id: I17aa8eb5e223552eab6469c75743e80366973625 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2020-09-07Remove unused strings from update/org.eclipse.update.configuratorLars Vogel2-6/+0
Similar to the new unnecessary strings from https://git.eclipse.org/r/c/platform/eclipse.platform/+/167879 we already have a few unused strings in this plug-in Change-Id: I7e787f444e4d21e39c61b25347e85cedc8fb1983
2020-09-07Bug 564239 - Removes manual startup of OSGi in case OSGi ds is notLars Vogel1-54/+0
present Eclipse requires and provides OSGi ds, therefore we can remove the check if the service needs to started manually. Cleanup to make move to new home easier Change-Id: I1a5f26b740538c62b76da534bf7e2e1aef1c9035 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2020-09-07Bug 564239 - Use ds annotation for BundleGroupComponentLars Vogel3-5/+8
Cleanup to make move to new home easier Change-Id: Ib7981e704e3aac6754770066dbe4f04019c80979 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2020-09-074.18 update of org.eclipse.update.configuratorLars Vogel2-2/+2
For https://git.eclipse.org/r/c/platform/eclipse.platform/+/167878 Change-Id: I24698cabbf6947525ee4bb0240dc58b38e1fcf43 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2020-09-03Bug 566356 - POM and product version change for 4.18 releaseI20200904-0540I20200904-0210Alexander Kurtakov12-14/+12
Change-Id: Id5acb67db2a27cefcf5ecf5e45b77e6dbcfe1e12 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2020-09-02Bug 566354 - Splash screen for 4.18 (2020-12)Alexander Kurtakov1-0/+0
Change-Id: I11fec926077a23f32be2009d68e421ddd79f76d7 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2020-08-24Bug 566304 - Update JDT and Platform porting guide links for 4.17 in Welcome ↵Y20200915-2240Y20200915-0150Y20200914-1200Y20200913-1200Y20200912-1200Y20200911-1200Y20200910-1200Y20200909-1200Y20200908-1200Y20200907-1200Y20200903-2210Y20200901-1200Y20200825-1200Y20200824-1310S4_17_0_RC2S4_17_0_RC1R4_17I20200902-1800I20200902-0600I20200901-1800I20200901-0600I20200831-1800I20200831-0600I20200830-1800I20200830-0600I20200829-1800I20200829-0600I20200828-1800I20200828-0150I20200826-1800I20200826-0600I20200825-1800I20200825-0600I20200824-1900R4_17_maintenanceKalyan Prasad Tatavarthi1-2/+2
page Change-Id: Ib3834270de3071b8207a01817902fafd261153cc Signed-off-by: Kalyan Prasad Tatavarthi <kalyan_prasad@in.ibm.com>
2020-07-24Use method reference in ant.uiY20200823-1200Y20200822-1200Y20200821-1200Y20200820-1200Y20200819-1200Y20200818-1200Y20200817-1210Y20200817-0450Y20200816-1200Y20200815-1200Y20200814-1200Y20200814-0650Y20200814-0630Y20200813-1200Y20200812-1200Y20200811-1200Y20200810-1200Y20200809-1200Y20200808-1200Y20200807-1200Y20200806-1200Y20200805-1200Y20200804-1200Y20200801-1200Y20200729-1200Y20200729-0630Y20200728-0600Y20200727-0310Y20200725-1200S4_17_0_M3I20200824-0600I20200823-1800I20200823-0600I20200822-1800I20200822-0600I20200821-1800I20200821-0440I20200820-0230I20200819-1800I20200819-0600I20200818-1800I20200818-0900I20200818-0600I20200818-0340I20200817-1800I20200817-0920I20200817-0600I20200817-0450I20200816-1800I20200816-0600I20200815-1800I20200815-0600I20200814-1800I20200814-1040I20200814-0640I20200814-0330I20200813-1800I20200812-1800I20200812-0710I20200811-1800I20200810-1800I20200809-1800I20200808-1800I20200808-0230I20200807-1800I20200806-1800I20200805-1800I20200805-0750I20200805-0630I20200804-1800I20200803-1800I20200803-0210I20200801-1800I20200801-0010I20200731-2040I20200731-1800I20200731-0520I20200730-1800I20200729-1800I20200729-0120I20200728-1800I20200728-1120I20200727-1800I20200726-1800I20200724-1800Lars Vogel4-8/+6
Change-Id: I2d29ca8f79a4d8b4b5e0ff2905accf4177782b47 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2020-07-244,17 update of ant/org.eclipse.ant.uiI20200724-0600Lars Vogel2-2/+2
Change-Id: Ieb5b204822885b780aa3773b501b503a078da02b Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2020-06-10Bug 564117 - Using lazy logical operatorY20200722-1200Y20200722-0040Y20200721-0610Y20200721-0450Y20200718-1200Y20200716-0820Y20200715-1200Y20200711-1200Y20200708-1200Y20200704-1200Y20200703-0300Y20200701-1200Y20200701-0020Y20200629-1000Y20200629-0740Y20200624-1200Y20200622-0340Y20200620-1200Y20200617-2350Y20200617-1200Y20200617-1040Y20200617-0510Y20200617-0320S4_17_0_M1I20200723-1800I20200723-1030I20200723-0620I20200722-1800I20200722-1140I20200722-0610I20200721-1800I20200721-1400I20200721-0950I20200721-0610I20200721-0130I20200720-1800I20200720-0850I20200720-0020I20200719-2010I20200718-1800I20200717-1800I20200716-1800I20200715-1800I20200714-1800I20200713-2230I20200713-1800I20200712-1800I20200711-2250I20200711-1800I20200710-1800I20200710-0230I20200708-1800I20200708-0600I20200707-1800I20200707-0600I20200706-2300I20200706-1800I20200706-0600I20200705-1800I20200705-0710I20200705-0600I20200704-1800I20200704-0600I20200703-1800I20200702-2150I20200702-1800I20200701-2350I20200701-2210I20200701-1800I20200701-0330I20200630-1800I20200629-1800I20200628-1800I20200626-1800I20200625-1800I20200624-1800I20200623-1800I20200623-1010I20200622-1800I20200621-1800I20200620-1800I20200619-1800I20200618-1800I20200617-1800I20200616-1800I20200616-0620I20200616-0320I20200616-0140I20200615-1800I20200614-1800I20200613-1800I20200612-1800I20200612-0650I20200612-0400I20200611-1800Lars Vogel2-3/+2
Use lazy logical operator (&& and ||) as it is potentially faster. Change-Id: Iabb619d8e05257270241194abb44b280fb7279bb Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2020-06-10Removes unnecessary whitespace from org.eclipse.ant.tests.uiI20200610-1800Lars Vogel1-2/+20
Change-Id: I4de59ff587d62b73be6777e47070fefa494b5de1 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2020-06-104.17 update of org.eclipse.ant.tests.uiLars Vogel2-2/+2
For https://git.eclipse.org/r/#/c/164294/ Change-Id: I2b5962a2146948177c735808dec1219083931065 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2020-06-10Remove whitespace from org.eclipse.ant.launchingLars Vogel48-151/+169
Change-Id: I7c751f0c3d0384a93c7a8dc44532d573bb402082 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2020-06-104.17 update of org.eclipse.ant.launchingLars Vogel2-2/+2
For https://git.eclipse.org/r/#/c/164294 Change-Id: Iaec35add1e0ca239cafee08b2e64827da597c113
2020-06-09Bug 559842: Improve look of Welcome pageI20200609-1800Matthias Becker12-4/+1052
Use SVG on welcome page for platform products Change-Id: Ia40f9170496406bcd99b284a1ba01ae1eff80c88
2020-06-09Bug 563838 - Splash screen for 4.17 (2020-09)Sravan Kumar Lakkimsetti2-0/+2
Change-Id: Ide0eeffe53ec89cd064f84ec420dfd8e5f0633dd Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
2020-06-08Removes unnecessary whitespace from ant.coreI20200609-0150I20200608-1800Lars Vogel32-246/+264
Change-Id: I89cb5e5c0d3f3297918d55a7e2a3f41420cbcdd4 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2020-06-084.17 update for ant.coreLars Vogel2-2/+2
For https://git.eclipse.org/r/#/c/164245 Change-Id: I0a640f035260f889436dea9e15b479044765aaf1 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2020-06-05Bug 563838 - Splash screen for 4.17 (2020-09)I20200607-1800I20200606-1800I20200606-0940I20200606-0910I20200606-0700I20200606-0400I20200606-0050I20200605-2140I20200605-1500I20200605-1230I20200605-1200I20200605-1150I20200605-0950I20200605-0910I20200605-0720Sravan Kumar Lakkimsetti7-0/+0
Change-Id: I1eee06004fd12f5a44881d0435a725faa20c7e74 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
2020-06-04Bug 563840 - POM and product version change for 4.17 releaseSravan Kumar Lakkimsetti12-14/+14
Change-Id: I30f61acd27f3de367891cea114bd41660b33e541 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
2020-05-26Bug 563574 - Update JDT and Platform porting guide links for 4.16 inY20200609-2100Y20200609-0150Y20200528-0030S4_16_0_RC2S4_16_0_RC1R4_16I20200604-0540I20200603-0600I20200602-1800I20200602-0600I20200602-0510I20200602-0010I20200601-1800I20200601-0640I20200601-0140I20200531-1800I20200531-0600I20200530-0600I20200529-0550I20200528-0200I20200528-0000I20200527-1800I20200527-0600I20200526-1800I20200526-0600R4_16_maintenanceKalyan Prasad Tatavarthi1-2/+2
Welcome page Change-Id: I6f8238d752f5c8e5e73344023152e9e12287a98e Signed-off-by: Kalyan Prasad Tatavarthi <kalyan_prasad@in.ibm.com>

Back to the top