aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs198/github_115
Commit message (Collapse)AuthorAgeFilesLines
* Prepare code, tests and docs for Java 18Alexander Kriegisch2022-03-212-65/+0
| | | | | | | | | | | | | | | | | | | | - JDT Core dependency in pom.xml - Constants.java - LangUtil.java - AjcTask.java - messages_aspectj.properties - XMLBasedAjcTestCaseForJava17Only.java - XMLBasedAjcTestCaseForJava18*.java - tests/bugs199 - tests/features199 - JavaVersionCompatibility.md - README-199.html - GitHub CI build Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
* Fix annotation style support for if(true) and if(false)Andy Clement2022-01-172-0/+65
The documentation specifies annotation style pointcuts can use if(false) or if(true) and not require a boolean return value and body for the @Pointcut annotated method but it doesn't work without this change to validation that recognizes the situation. Fixes #115