Philip Graf
Philip Graf
Automatically update workspace relative configurations when the project name changes, e.g. when renaming the project that contains the rule set file. This enhancement is a leftover of issue #20.
Currently delimited identifiers are quoted with back quotes. Back quotes, however, are only supported by MySQL. The SQL-99 standard defines [double quotes for delimited identifiers](http://savage.net.au/SQL/sql-99.bnf.html#delimited%20identifier) which other DBMSs like Oracle...
The PMD scan crashes when the ruleset file contains non-java rules, e.g. rules from the categories `Maven POM` or `XML`. It looks like the plugin only contains the jar for...
**Affects PMD Version:** 7.2.0 **Rule:** [LocalVariableCouldBeFinal](https://docs.pmd-code.org/pmd-doc-7.2.0/pmd_rules_java_codestyle.html#localvariablecouldbefinal) **Code Sample demonstrating the issue:** ```java private Optional createFileWatcher() { @SuppressWarnings("PMD.LocalVariableCouldBeFinal") Optional optionalFileWatcher; // false positive in PMD 7.2.0, cannot be final try {...