Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Allow year 2021 in Checklics.License | Alexander Kriegisch | 2021-03-14 | 1 | -17/+7 |
| | | | | Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Support Windows 10 and Windows Server 2016/2019 in installer | Alexander Kriegisch | 2021-03-04 | 1 | -2/+4 |
| | | | | | | | | Those versions were not detected until now, which lead to bogus Windows batch files forwarding only 9 Ajc parameters to the Java process via "%1 %2 %3 %4 %5 %6 %7 %8 %9" instead of "%*". Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Revert to 1.9.7.BUILD-SNAPSHOT | Andy Clement | 2020-08-21 | 1 | -1/+1 |
| | |||||
* | 1.9.7 milestone 1 published | Andy Clement | 2020-08-21 | 6 | -13/+48 |
| | |||||
* | Merge pull request #10 from larsgrefer/cleanup/pom | Andy Clement | 2020-08-16 | 1 | -1/+0 |
|\ | | | | | Cleanup the Maven pom.xml files | ||||
| * | Remove project.parent.relative path as ../pom.xml is already the default | Lars Grefer | 2020-08-15 | 1 | -1/+0 |
| | | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | | 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> | ||||
* | Rev to 1.9.7.BUILD-SNAPSHOT | Andy Clement | 2020-07-22 | 1 | -1/+1 |
| | |||||
* | AspectJ 1.9.6 final bitsV1_9_6 | Andy Clement | 2020-07-22 | 5 | -7/+40 |
| | |||||
* | Update ASM and fix packaging for matcher artifact | Andy Clement | 2020-07-17 | 5 | -11/+51 |
| | |||||
* | Corrected links inside poms | Andy Clement | 2020-04-20 | 4 | -0/+100 |
| | |||||
* | 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 | 12 | -306/+325 |
| | |||||
* | 1.9.5 release versions in pomsV1_9_5 | Andy Clement | 2019-11-28 | 1 | -1/+1 |
| | |||||
* | Update to 1.9.5.BUILD-SNAPSHOT in poms | Andy Clement | 2019-06-03 | 1 | -1/+1 |
| | |||||
* | 1.9.4 POMS | Andy Clement | 2019-05-10 | 1 | -1/+1 |
| | |||||
* | pushed versions to 1.9.4.BUILD-SNAPSHOT | Andy Clement | 2019-04-17 | 1 | -1/+1 |
| | |||||
* | Fix path separator for windows | Andy Clement | 2019-03-04 | 1 | -1/+1 |
| | |||||
* | Fix version tagging for info strings | Andy Clement | 2019-02-11 | 1 | -0/+3 |
| | |||||
* | tidyup - last bits of maven stuff | Andy Clement | 2019-02-08 | 1 | -20/+20 |
| | |||||
* | tidyup | Andy Clement | 2019-02-08 | 12 | -33/+252 |
| | |||||
* | 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 | 37 | -41/+33 |
| | |||||
* | 1.9.3 snapshot updates | Andy Clement | 2019-01-21 | 3 | -3/+3 |
| | |||||
* | better handling for 1.8 modules | Andy Clement | 2018-10-15 | 1 | -15/+22 |
| | |||||
* | reset to 0 size to trigger it getting built | Andy Clement | 2018-03-09 | 1 | -0/+0 |
| | |||||
* | Bug#531694: generate more optional thisJoinPoint construction code | Andy Clement | 2018-03-09 | 2 | -0/+3 |
| | | | | | | | This commit introduces some new methods into the runtime Factory class and modifies code generation to use them (and to use the form of the LDC bytecode that loads class constants). | ||||
* | Updates for 1.9.0.RC4 - latest JDTV1_9_0_RC4 | Andy Clement | 2018-02-21 | 3 | -3/+3 |
| | |||||
* | updated for 2018 | Andy Clement | 2018-02-14 | 1 | -2/+8 |
| | |||||
* | 1.9.0 update | Andy Clement | 2017-10-20 | 1 | -2/+2 |
| | |||||
* | Switched from diamond to specific types | Andy Clement | 2017-10-20 | 3 | -8/+8 |
| | |||||
* | Fix use of diamond and update versions to 1.9 | Andy Clement | 2017-10-20 | 9 | -32/+31 |
| | |||||
* | Update to beta 7 | Andy Clement | 2017-09-27 | 3 | -3/+3 |
| | |||||
* | Bring Java9 branch in line with 1.8.11 progress | Andy Clement | 2017-09-21 | 12 | -145/+151 |
|\ | |||||
| * | 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 |
| | | |||||
| * | Fix 500035: handling target only binding in @AJ pointcut | Andy Clement | 2016-11-18 | 3 | -3/+3 |
| | | |||||
| * | Upgraded to new JDT compiler - neon.1 and a bit | Andy Clement | 2016-11-07 | 12 | -139/+133 |
| | |