Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'master' into feature/collection-performance | Andy Clement | 2020-08-15 | 5 | -6/+0 |
|\ | |||||
| * | Cleanup unused imports | Lars Grefer | 2020-08-16 | 6 | -7/+0 |
| | | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | | Weaken Collection declarations | Lars Grefer | 2020-08-15 | 9 | -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() call | Lars Grefer | 2020-08-15 | 2 | -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 style | Lars Grefer | 2020-08-15 | 1 | -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 Grefer | 2020-08-15 | 1 | -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 possible | Lars Grefer | 2020-08-13 | 11 | -38/+38 |
| | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | 'String.indexOf()' expression is replaceable with 'contains()' | Lars Grefer | 2020-08-08 | 4 | -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' loop | Lars Grefer | 2020-08-08 | 13 | -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 Java14 | Andy Clement | 2020-04-20 | 1 | -7/+7 |
| | |||||
* | polish | Andy Clement | 2019-11-28 | 4 | -22/+20 |
| | |||||
* | Move to 1.9.6.BUILD-SNAPSHOT version | Andy Clement | 2019-11-28 | 11 | -305/+324 |
| | |||||
* | Fix path separator for windows | Andy Clement | 2019-03-04 | 1 | -1/+1 |
| | |||||
* | tidyup - last bits of maven stuff | Andy Clement | 2019-02-08 | 1 | -20/+20 |
| | |||||
* | tidyup | Andy Clement | 2019-02-08 | 10 | -0/+137 |
| | |||||
* | Fix getSpecFile() to work with URLs and adjust installer unpacker | Andy Clement | 2019-02-08 | 1 | -8/+32 |
| | |||||
* | mavenizing build - done | Andy Clement | 2019-02-01 | 25 | -12/+23 |
| | |||||
* | mavenizing build - wip | Andy Clement | 2019-02-01 | 31 | -0/+1369 |
| | |||||
* | better handling for 1.8 modules | Andy Clement | 2018-10-15 | 1 | -15/+22 |
| | |||||
* | updated for 2018 | Andy Clement | 2018-02-14 | 1 | -2/+8 |
| | |||||
* | Fix use of diamond and update versions to 1.9 | Andy Clement | 2017-10-20 | 9 | -32/+31 |
| | |||||
* | reduced min Java version to 1.6 | Andy Clement | 2016-12-16 | 1 | -2/+3 |
| | |||||
* | fix warnings in build - support .isJava8 option in buildV1_8_10 | Andy Clement | 2016-12-09 | 1 | -4/+14 |
| | |||||
* | Polishing for 1.8.10 release | Andy Clement | 2016-12-08 | 1 | -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 years | Andy Clement | 2016-12-02 | 1 | -1/+2 |
| | |||||
* | Upgraded to new JDT compiler - neon.1 and a bit | Andy Clement | 2016-11-07 | 8 | -119/+117 |
| | |||||
* | 450634: support Windows 8 when computing best batch file format | Andy Clement | 2015-01-08 | 1 | -1/+1 |
| | |||||
* | update build jar so suggests 1.8 as install dirV1_8_0RC1 | Andy Clement | 2014-03-18 | 1 | -2/+2 |
| | |||||
* | add more years to license checker | Andy Clement | 2013-01-21 | 1 | -1/+1 |
| | |||||
* | 391123: ltw cache improvements | Andy Clement | 2012-10-29 | 1 | -2/+3 |
| | |||||
* | fix install location to 1.7 | Andy Clement | 2012-05-28 | 1 | -2/+2 |
| | |||||
* | 341788: check two new versions of windows | aclement | 2011-04-04 | 1 | -1710/+1654 |
| | |||||
* | 329126: own our XML parser! | aclement | 2011-03-01 | 1 | -1/+2 |
| | |||||
* | existence of .isJava5 in module root will activate java5 compilation of this ↵ | aclement | 2009-09-07 | 1 | -774/+744 |
| | | | | module | ||||
* | 2009,2010 | aclement | 2009-03-04 | 1 | -482/+440 |
| | |||||
* | 246125: ensuring content in org.aspectj.matcher.jar | aclement | 2008-10-20 | 1 | -1/+1 |
| | |||||
* | 246125: build the new org.aspectj.matcher.jar into the distribution | aclement | 2008-10-20 | 1 | -0/+1 |
| | |||||
* | remove aspectjlib from the distribution and build system | aclement | 2008-10-15 | 1 | -1/+1 |
| | |||||
* | dont package asm | aclement | 2008-09-17 | 1 | -1/+1 |
| | |||||
* | 231396: Comment #4: Big Refactoring | aclement | 2008-05-28 | 1 | -1/+1 |
| | |||||
* | dont let bea test stubs make it into distribution | aclement | 2008-04-04 | 1 | -1/+1 |
| | |||||
* | 2008! | aclement | 2008-01-25 | 1 | -1/+1 |
| | |||||
* | AspectJ6: change install location to 1.6 | aclement | 2008-01-16 | 1 | -2/+2 |
| | |||||
* | fix for 205949: "Unattended install of aspectj builds on the Mac fails". ↵ | aclement | 2007-10-26 | 1 | -2/+2 |
| | | | | just had to cope with a null graphical component. | ||||
* | 2007! | aclement | 2007-01-10 | 1 | -1/+1 |
| | |||||
* | cope (not perfect) with recent change to containers in AJDT projects. | aclement | 2006-08-01 | 1 | -3/+8 |
| | |||||
* | preliminary support for reading OSGI manifests | wisberg | 2006-07-20 | 1 | -5/+247 |
| | |||||
* | preliminary support for reading OSGI manifest, remove unused code | wisberg | 2006-07-20 | 1 | -55/+84 |
| | |||||
* | unused import | wisberg | 2006-07-20 | 1 | -3/+2 |
| | |||||
* | unused local | wisberg | 2006-07-20 | 1 | -1/+0 |
| |