Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ctrl crash #5280

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from

do not exist for unexpected exceptions

ec9adf8
Select commit
Loading
Failed to load commit list.
Draft

Ctrl crash #5280

do not exist for unexpected exceptions
ec9adf8
Select commit
Loading
Failed to load commit list.
Terasology Jenkins.io / PMD succeeded Dec 17, 2024 in 0s

1 new issue, 180 total

Total New Outstanding Fixed Trend
180 1 179 0 👎

Reference build: Terasology » engine » develop #93

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

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://pmd.github.io/pmd-6.55.0/pmd_rules_java_bestpractices.html#avoidprintstacktrace"> See PMD documentation. </a>