v0.5.9
What's Changed
- Dependency(deps): Bump maven-source-plugin from 3.2.1 to 3.3.0 by @dependabot in #168
- Implement things by @Luro02 in #174
- Dependency(deps): Bump lombok from 1.18.26 to 1.18.28 by @dependabot in #181
- Dependency(deps): Bump jackson.version from 2.15.1 to 2.15.2 by @dependabot in #179
- Dependency(deps): Bump docker.version from 3.3.0 to 3.3.1 by @dependabot in #178
- Limit Annotations to at most 10 per
ProblemType
to prevent bloat - Ensure tmp folder ist deleted on exit
- Detect uninitialized variables that should be initialized
- Suggest using a different visibility for variables or methods (can detect things that should be private or package-default)
- Detect
if (a == true)
instead ofif (a)
- Detect qualified paths that are not imported (
java.lang.String string;
instead ofString string;
) - Detect multiple statements in a line (
int a, b;
) - Try to detect unnecessary uses of boxed types (
Double
instead ofdouble
) - Update PMD to 7.0.0-rc2
- Minor bug fixes
Full Changelog: v0.5.8...v0.5.9