Terasology Jenkins.io / PMD
succeeded
Oct 21, 2024 in 0s
1 new issue, 180 total
Total | New | Outstanding | Fixed | Trend |
---|---|---|---|---|
180 | 1 | 179 | 0 | 👎 |
Reference build: Terasology » engine » develop #90
Details
Severity distribution of new issues
Error | Warning High | Warning Normal | Warning Low |
---|---|---|---|
0 | 0 | 1 | 0 |
Annotations
Check warning on line 537 in engine/src/main/java/org/terasology/engine/core/TerasologyEngine.java
terasology-jenkins-io / PMD
AvoidPrintStackTrace
NORMAL:
Avoid printStackTrace(); use a logger call instead.
Raw output
Avoid printStackTrace(); use a logger call instead. <pre> <code> class Foo { void bar() { try { // do something } catch (Exception e) { e.printStackTrace(); } } } </code> </pre> <a href="https://pmd.github.io/pmd-6.55.0/pmd_rules_java_bestpractices.html#avoidprintstacktrace"> See PMD documentation. </a>
Loading