Skip to content

Ctrl crash - #5280

Closed
soloturn wants to merge 1 commit into
developfrom
ctrl-crash
Closed

Ctrl crash#5280
soloturn wants to merge 1 commit into
developfrom
ctrl-crash

do not exist for unexpected exceptions

f92767c
Select commit
Loading
Failed to load commit list.
Terasology Jenkins.io / PMD succeeded Aug 20, 2026 in 0s

1 new issue, 188 total

Total New Outstanding Fixed Trend
188 1 187 0 👎

Reference build: Terasology » engine » develop #12

Details

Severity distribution of new issues

Error Warning High Warning Normal Warning Low
0 0 1 0

Annotations

Check warning on line 589 in engine/src/main/java/org/terasology/engine/core/TerasologyEngine.java

See this annotation in the file changed.

@terasology-jenkins-io 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://docs.pmd-code.org/pmd-doc-7.7.0/pmd_rules_java_bestpractices.html#avoidprintstacktrace"> See PMD documentation. </a>