aboutsummaryrefslogtreecommitdiffstats
path: root/build/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into feature/collection-performanceAndy Clement2020-08-155-6/+0
|\
| * Cleanup unused importsLars Grefer2020-08-166-7/+0
| | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* | Weaken Collection declarationsLars Grefer2020-08-159-19/+16
| | | | | | | | | | | | Reports on declarations of Collection variables made by using the collection class as the type, rather than an appropriate interface. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* | Redundant Collection.addAll() callLars Grefer2020-08-152-4/+2
| | | | | | | | | | | | Reports Collection.addAll() and Map.putAll() calls after instantiation of a collection using a constructor call without arguments. Such constructs can be replaced with a single call to a parametrized constructor which simplifies code. Also for some collections the replacement might be more performant. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* | Collection.toArray() call styleLars Grefer2020-08-151-2/+2
| | | | | | | | | | | | | | There are two styles to convert a collection to an array: either using a pre-sized array (like c.toArray(new String[c.size()])) or using an empty array (like c.toArray(new String[0]). In older Java versions using pre-sized array was recommended, as the reflection call which is necessary to create an array of proper size was quite slow. However since late updates of OpenJDK 6 this call was intrinsified, making the performance of the empty array version the same and sometimes even better, compared to the pre-sized version. Also passing pre-sized array is dangerous for a concurrent or synchronized collection as a data race is possible between the size and toArray call which may result in extra nulls at the end of the array, if the collection was concurrently shrunk during the operation. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* | Collections.sort() can be replaced with List.sort()Lars Grefer2020-08-151-1/+1
|/ | | | | | Reports calls to Collections.sort(list, comparator) which could be replaced with list.sort(comparator). Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* Use the diamond operator where possibleLars Grefer2020-08-1311-38/+38
| | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* 'String.indexOf()' expression is replaceable with 'contains()'Lars Grefer2020-08-084-7/+7
| | | | | | Reports any String.indexOf() expressions which can be replaced with a call to the String.contains() method available in Java 5 and newer. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* 'for' loop replaceable with enhanced 'for' loopLars Grefer2020-08-0813-329/+307
| | | | | | Reports for loops which iterate over collections or arrays, and can be replaced with an enhanced for loop (i.e. the foreach iteration syntax). Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* Include JDTCore for Java14Andy Clement2020-04-201-7/+7
|
* polishAndy Clement2019-11-284-22/+20
|
* Move to 1.9.6.BUILD-SNAPSHOT versionAndy Clement2019-11-2811-305/+324
|
* Fix path separator for windowsAndy Clement2019-03-041-1/+1
|
* tidyup - last bits of maven stuffAndy Clement2019-02-081-20/+20
|
* tidyupAndy Clement2019-02-0810-0/+137
|
* Fix getSpecFile() to work with URLs and adjust installer unpackerAndy Clement2019-02-081-8/+32
|
* mavenizing build - doneAndy Clement2019-02-0125-12/+23
|
* mavenizing build - wipAndy Clement2019-02-0131-0/+1369
|
* better handling for 1.8 modulesAndy Clement2018-10-151-15/+22
|
* updated for 2018Andy Clement2018-02-141-2/+8
|
* Fix use of diamond and update versions to 1.9Andy Clement2017-10-209-32/+31
|
* reduced min Java version to 1.6Andy Clement2016-12-161-2/+3
|
* fix warnings in build - support .isJava8 option in buildV1_8_10Andy Clement2016-12-091-4/+14
|
* Polishing for 1.8.10 releaseAndy Clement2016-12-081-2/+2
| | | | | - reduced build level from 8 to 7 so that the weaver can be used on Java7. - minor readme tweaks
* added 2016/2017 to yearsAndy Clement2016-12-021-1/+2
|
* Upgraded to new JDT compiler - neon.1 and a bitAndy Clement2016-11-078-119/+117
|
* 450634: support Windows 8 when computing best batch file formatAndy Clement2015-01-081-1/+1
|
* update build jar so suggests 1.8 as install dirV1_8_0RC1Andy Clement2014-03-181-2/+2
|
* add more years to license checkerAndy Clement2013-01-211-1/+1
|
* 391123: ltw cache improvementsAndy Clement2012-10-291-2/+3
|
* fix install location to 1.7Andy Clement2012-05-281-2/+2
|
* 341788: check two new versions of windowsaclement2011-04-041-1710/+1654
|
* 329126: own our XML parser!aclement2011-03-011-1/+2
|
* existence of .isJava5 in module root will activate java5 compilation of this ↵aclement2009-09-071-774/+744
| | | | module
* 2009,2010aclement2009-03-041-482/+440
|
* 246125: ensuring content in org.aspectj.matcher.jaraclement2008-10-201-1/+1
|
* 246125: build the new org.aspectj.matcher.jar into the distributionaclement2008-10-201-0/+1
|
* remove aspectjlib from the distribution and build systemaclement2008-10-151-1/+1
|
* dont package asmaclement2008-09-171-1/+1
|
* 231396: Comment #4: Big Refactoringaclement2008-05-281-1/+1
|
* dont let bea test stubs make it into distributionaclement2008-04-041-1/+1
|
* 2008!aclement2008-01-251-1/+1
|
* AspectJ6: change install location to 1.6aclement2008-01-161-2/+2
|
* fix for 205949: "Unattended install of aspectj builds on the Mac fails". ↵aclement2007-10-261-2/+2
| | | | just had to cope with a null graphical component.
* 2007!aclement2007-01-101-1/+1
|
* cope (not perfect) with recent change to containers in AJDT projects.aclement2006-08-011-3/+8
|
* preliminary support for reading OSGI manifestswisberg2006-07-201-5/+247
|
* preliminary support for reading OSGI manifest, remove unused codewisberg2006-07-201-55/+84
|
* unused importwisberg2006-07-201-3/+2
|
* unused localwisberg2006-07-201-1/+0
|