Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Test on LTS versions and most recent non LTS | Andy Clement | 2020-08-14 | 1 | -2/+2 |
| | |||||
* | Merge pull request #4 from larsgrefer/feature/github-actions | Andy Clement | 2020-08-14 | 4 | -91/+9 |
|\ | | | | | Fix and improve the CI Jobs | ||||
| * | Merge branch 'master' of github.com:eclipse/org.aspectj into ↵ | Lars Grefer | 2020-08-14 | 17 | -205/+247 |
| |\ | |/ |/| | | | | | | | feature/github-actions Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | | Fix up tests and reduce verbosity on J11 | Andy Clement | 2020-08-14 | 13 | -198/+230 |
| | | |||||
* | | Attempting to get J11 build happy at github | Andy Clement | 2020-08-13 | 1 | -4/+0 |
| | | |||||
* | | Making tests behave on 11 | Andy Clement | 2020-08-13 | 4 | -5/+19 |
| | | |||||
| * | Merge branch 'feature/simplify-ajdoc' of github.com:larsgrefer/org.aspectj ↵ | Lars Grefer | 2020-08-14 | 7 | -196/+123 |
| |\ | | | | | | | | | | | | | | | | into feature/github-actions Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
| | * | Always run javadoc using the ToolProvider API | Lars Grefer | 2020-08-14 | 2 | -87/+4 |
| |/ |/| | | | | | | | | | `com.sun.tools.javadoc.Main` isn't available in recent Java versions (13+) Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | | Trying to reduce test verbosity | Andy Clement | 2020-08-13 | 4 | -103/+116 |
| | | |||||
* | | Adjust ASM version number used to work properly with Records (J14) | Andy Clement | 2020-08-13 | 1 | -2/+3 |
| | | |||||
| * | Fix compilation of JavadocRunner for Java 13+ | Lars Grefer | 2020-08-13 | 1 | -5/+7 |
| | | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
| * | Fix JRockitAgentTest for Java 9 and 10 | Lars Grefer | 2020-08-13 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
| * | Test more Java versions | Lars Grefer | 2020-08-13 | 1 | -1/+2 |
| | | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
| * | Print used tool versions | Lars Grefer | 2020-08-13 | 1 | -0/+2 |
| | | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
| * | Fix compilation on Java 11 | Lars Grefer | 2020-08-13 | 1 | -4/+4 |
|/ | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | Merge pull request #3 from larsgrefer/feature/github-actions | Andy Clement | 2020-08-13 | 3 | -6/+35 |
|\ | | | | | Create a simple CI Job using GitHub Actions | ||||
| * | Fix Javadoc generation on Java 11 | Lars Grefer | 2020-08-13 | 1 | -0/+1 |
| | | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
| * | Fix Testcase | Lars Grefer | 2020-08-13 | 1 | -6/+8 |
| | | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
| * | Create maven.yml | Lars Grefer | 2020-08-13 | 1 | -0/+26 |
| | | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | | Merge pull request #2 from larsgrefer/feature/diamond-operator | Andy Clement | 2020-08-13 | 243 | -1046/+1046 |
|\ \ | |/ |/| | Use the diamond operator where possible | ||||
| * | Use the diamond operator where possible | Lars Grefer | 2020-08-13 | 243 | -1046/+1046 |
|/ | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | Merge pull request #1 from larsgrefer/feature/java5 | Andy Clement | 2020-08-12 | 394 | -4449/+3997 |
|\ | | | | | Update the code to Java 5 features | ||||
| * | Merge branch 'master' into feature/java5 | Andy Clement | 2020-08-12 | 1 | -13/+33 |
| |\ | |/ |/| | |||||
* | | Add a debug flag to workaround issue until we can sort it (565713) | Andy Clement | 2020-08-10 | 1 | -15/+35 |
| | | |||||
| * | Unnecessary unboxing | Lars Grefer | 2020-08-08 | 30 | -58/+58 |
| | | | | | | | | | | | | Reports "unboxing", e.g. explicit unwrapping of wrapped primitive values. Unboxing is unnecessary under Java 5 and newer, and can be safely removed. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
| * | Unnecessary boxing | Lars Grefer | 2020-08-08 | 25 | -57/+58 |
| | | | | | | | | | | | | Reports explicit boxing, i.e. wrapping of primitive values in objects. Explicit manual boxing is unnecessary under Java 5 and newer, and can be safely removed. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
| * | 'String.indexOf()' expression is replaceable with 'contains()' | Lars Grefer | 2020-08-08 | 105 | -238/+235 |
| | | | | | | | | | | | | 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> | ||||
| * | 'while' loop replaceable with enhanced 'for' loop | Lars Grefer | 2020-08-08 | 12 | -68/+44 |
| | | | | | | | | | | | | Reports while loops which iterate over collections, and can be replaced with an enhanced for loop (i.e. foreach iteration syntax). Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
| * | 'for' loop replaceable with enhanced 'for' loop | Lars Grefer | 2020-08-08 | 336 | -4045/+3619 |
|/ | | | | | | 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> | ||||
* | Polish | Andy Clement | 2020-07-22 | 7 | -445/+467 |
| | |||||
* | Fix serialVersionUID initialization for java9+ | eli-fin | 2020-07-22 | 1 | -24/+13 |
| | | | | | | Move initialization of static final serialVersionUID field to clinit, since as of java9+, the runtime won't allow setting final fields outside clinit Signed-off-by: Eli Finkel <eyfinkel@gmail.com> | ||||
* | Rev to 1.9.7.BUILD-SNAPSHOT | Andy Clement | 2020-07-22 | 29 | -31/+31 |
| | |||||
* | Fixed a misplaced <para> element in the Docbook documentation for ajc | Emmanuel Bourg | 2020-07-22 | 1 | -1/+1 |
| | |||||
* | AspectJ 1.9.6 final bitsV1_9_6 | Andy Clement | 2020-07-22 | 35 | -39/+73 |
| | |||||
* | Update ASM and fix packaging for matcher artifact | Andy Clement | 2020-07-17 | 24 | -160/+408 |
| | |||||
* | polish and new test for 550705 | Andy Clement | 2020-05-01 | 6 | -11/+59 |
| | |||||
* | 558995 testcode | Andy Clement | 2020-04-29 | 4 | -0/+221 |
| | |||||
* | Fix 550705: tricky intermittent verify error | Andy Clement | 2020-04-29 | 1 | -11/+24 |
| | |||||
* | Polish | Andy Clement | 2020-04-22 | 2 | -16/+15 |
| | |||||
* | Added basic ThreadLocalAwareRepository - groundwork for 561819 | Andy Clement | 2020-04-22 | 1 | -0/+111 |
| | |||||
* | Fix for 558995: NullPointerException at ↵ | Andy Clement | 2020-04-22 | 1 | -2/+8 |
| | | | | org.aspectj.weaver.ReferenceType.getWeaverState | ||||
* | few more bits to ignore | Andy Clement | 2020-04-21 | 1 | -0/+6 |
| | |||||
* | Reorganise + comment .gitignore, ignore IntelliJ IDEA projects | Alexander Kriegisch | 2020-04-21 | 1 | -7/+21 |
| | | | | Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | fix tests running on windows | eli-fin | 2020-04-21 | 1 | -1/+1 |
| | | | | | This caused checkRtJar to return an error, which led to some tests to fail Signed-off-by: Eli Finkel <eyfinkel@gmail.com> | ||||
* | Exclude some linux created debug files | Andy Clement | 2020-04-21 | 1 | -0/+1 |
| | |||||
* | Fix support for -14 on command line - was missing from JDT | Andy Clement | 2020-04-21 | 3 | -7/+10 |
| | |||||
* | Corrected links inside poms | Andy Clement | 2020-04-20 | 4 | -0/+100 |
| | |||||
* | polish | Andy Clement | 2020-04-20 | 2 | -5/+6 |
| | |||||
* | Include JDTCore for Java14 | Andy Clement | 2020-04-20 | 45 | -781/+1256 |
| | |||||
* | polish | Andy Clement | 2019-11-29 | 10 | -3734/+3813 |
| |