Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use the diamond operator where possible | Lars Grefer | 2020-08-13 | 17 | -48/+48 |
| | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | Unnecessary unboxing | Lars Grefer | 2020-08-08 | 9 | -10/+10 |
| | | | | | | 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 | 3 | -5/+5 |
| | | | | | | 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 | 16 | -32/+32 |
| | | | | | | 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 | 38 | -810/+748 |
| | | | | | | 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 | 1 | -323/+332 |
| | |||||
* | 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 | 1 | -1/+1 |
| | |||||
* | Include JDTCore for Java14 | Andy Clement | 2020-04-20 | 4 | -27/+55 |
| | |||||
* | polish | Andy Clement | 2019-11-29 | 4 | -1723/+1765 |
| | |||||
* | polish | Andy Clement | 2019-11-28 | 34 | -169/+273 |
| | |||||
* | Move to 1.9.6.BUILD-SNAPSHOT version | Andy Clement | 2019-11-28 | 1 | -1/+1 |
| | |||||
* | 1.9.5 release versions in pomsV1_9_5 | Andy Clement | 2019-11-28 | 1 | -1/+1 |
| | |||||
* | Fix 550494 | Andy Clement | 2019-11-27 | 1 | -20/+19 |
| | |||||
* | Java 13 support | Andy Clement | 2019-11-25 | 2 | -16/+50 |
| | |||||
* | 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 |
| | |||||
* | Updated with Java12 support | Andy Clement | 2019-04-03 | 5 | -6/+59 |
| | |||||
* | windows compatibility in tests | Andy Clement | 2019-03-03 | 1 | -1/+4 |
| | |||||
* | improved test harnesses for working with runtime | Andy Clement | 2019-02-19 | 1 | -0/+1 |
| | |||||
* | add missing license | Andy Clement | 2019-02-11 | 1 | -0/+12 |
| | |||||
* | polish | Andy Clement | 2019-02-11 | 5 | -29/+29 |
| | |||||
* | better test tidyup | Andy Clement | 2019-02-11 | 18 | -6/+7 |
| | |||||
* | tidyup | Andy Clement | 2019-02-08 | 2 | -0/+13 |
| | |||||
* | Fix getSpecFile() to work with URLs and adjust installer unpacker | Andy Clement | 2019-02-08 | 3 | -6/+10 |
| | |||||
* | Add module tests back in - but streamlined | Andy Clement | 2019-02-01 | 2 | -3/+64 |
| | |||||
* | various polish to previously mavenized projects to support newer ones | Andy Clement | 2019-01-31 | 1 | -0/+17 |
| | |||||
* | various polish to previously mavenized projects to support newer ones | Andy Clement | 2019-01-31 | 2 | -16/+18 |
| | |||||
* | mavenizing testing - done | Andy Clement | 2019-01-30 | 89 | -207/+0 |
| | |||||
* | mavenizing testing - wip | Andy Clement | 2019-01-30 | 147 | -62/+445 |
| | |||||
* | new infra for accessing weaver state info attribute from tests | Andy Clement | 2019-01-21 | 1 | -0/+34 |
| | |||||
* | 1.9.2.RC1 changesV1_9_2_RC1 | Andy Clement | 2018-09-29 | 4 | -4/+53 |
| | |||||
* | Support Java10 | Andy Clement | 2018-04-18 | 3 | -4/+39 |
| | |||||
* | Add intermediate test class that ensures the tests are on J9 | Andy Clement | 2018-02-14 | 1 | -0/+31 |
| | |||||
* | Add missing overrides | Andy Clement | 2018-02-14 | 1 | -5/+10 |
| | |||||
* | Add basic rename functionality to file step | Andy Clement | 2018-02-14 | 1 | -0/+23 |
| | |||||
* | Updates to better cope with future JDKs | Andy Clement | 2017-11-09 | 2 | -27/+28 |
| | | | | | | | | | | | | | | The version handling in LangUtil has been overhauled to cope better with post 1.8 releases (JDK9 and JDK10 or 18.3 or whatever they call it). As part of this moved to treating JDK9 as '9' rather than '1.9'. Also removed duplicate version processing logic and had that defer to the one place in LangUtil where we now deal with it. Includes some generics tidyup in ajdoc. More ajdoc work is necessary for Java10 because it removes the standard doclet (old style). However trying to invoke the internal Javadoc handler in Java10 is failing due to module visibility rules. | ||||
* | Upgraded test infra to support building/running modules | Andy Clement | 2017-10-20 | 7 | -14/+85 |
| | |||||
* | various changes to make more tests pass on Java9 | Andy Clement | 2017-09-22 | 2 | -11/+20 |
| | |||||
* | Bring Java9 branch in line with 1.8.11 progress | Andy Clement | 2017-09-21 | 7 | -104/+116 |
|\ | |||||
| * | reduced min Java version to 1.6 | Andy Clement | 2016-12-16 | 1 | -4/+24 |
| | | |||||
| * | fix warnings in build - support .isJava8 option in buildV1_8_10 | Andy Clement | 2016-12-09 | 1 | -4/+4 |
| | | |||||
| * | Fix 500035: handling target only binding in @AJ pointcut | Andy Clement | 2016-11-18 | 6 | -97/+89 |
| | | |||||
* | | Merged post 1.8.5 changes into Java9 branch | Andy Clement | 2017-09-20 | 7 | -56/+45 |
|\| | |||||
| * | refactoring to use generics, reduce warnings | Andy Clement | 2016-01-20 | 7 | -56/+45 |
| | | |||||
* | | Fix classpath for tests on Java9 | Andy Clement | 2016-06-27 | 1 | -1/+6 |
| | | |||||
* | | Cope with java version becoming 9.X rather than 1.9.X | Andy Clement | 2016-01-04 | 1 | -1/+1 |
| | | |||||
* | | very early java9 support - can resolve classes in jimages | Andy Clement | 2015-03-04 | 1 | -0/+8 |
|/ | |||||
* | 456457: unresolvable member fix. Testcode for 456801,455608 | Andy Clement | 2015-01-07 | 1 | -0/+17 |
| |