PMD scans source code and looks for potential problems like possible bugs, dead code, suboptimal code, overcomplicated expressions, and duplicate code.
For PMD I'd like to have a rule which warns me of those ugly variables which start with my. This …
regex regex-negation pmdIn my application, I am running my code through PMD.It shows me this message: Avoid printStackTrace(); use a logger …
java logging pmd printstacktraceWe have a Java Application that has a few modules that know to read text files. They do it quite …
java while-loop pmdI'm using the PMD plugin for eclipse and it gives me an error when using System.out.println() with the …
java eclipse pmd java.util.loggingWe are working on a web project from scratch and are looking at the following static code analysis tools. Conventions (…
checkstyle findbugs sonarqube pmdWe are introducing static analysis tools into the build system for our Java product. We are using Maven2 so Checkstyle …
java static-analysis findbugs checkstyle pmdThere was a question comparing PMD and CheckStyle. However, I can't find a nice breakdown on the differences/similarities between …
java static-analysis findbugs pmdI am using Eclipse with the PMD Plug-in (4.0.0.v20130510-1000) and get a lot of those violations: Found 'DD'-anomaly for …
java pmd dataflow anomaly-detectionDataflowAnomalyAnalysis: Found 'DD'-anomaly for variable 'variable' (lines 'n1'-'n2'). DataflowAnomalyAnalysis: Found 'DU'-anomaly for variable 'variable' (lines 'n1'-'n2'). …
java pmd