Skip to content

Attempt to get test working on Windows

ci.jenkins.io / CheckStyle failed Oct 26, 2024 in 0s

1 new issue

Total New Outstanding Fixed Trend
1 1 0 0 👎

Reference build: Plugins » build-failure-analyzer-plugin » master #156

Details

Severity distribution of new issues

Error Warning High Warning Normal Warning Low
1 0 0 0

Annotations

Check warning on line 48 in src/test/java/com/sonyericsson/jenkins/plugins/bfa/model/FailureCauseProjectActionHudsonTest.java

See this annotation in the file changed.

@ci-jenkins-io ci-jenkins-io / CheckStyle

AvoidInlineConditionalsCheck

ERROR:
Avoid inline conditionals.
Raw output
<p>Since Checkstyle 3.1</p><p> Detects inline conditionals. Here is one example of an inline conditional: </p><pre><code> String a = getParameter("a"); String b = (a==null || a.length&lt;1) ? null : a.substring(1); </code></pre><p> Rationale: Some developers find inline conditionals hard to read, so their employer's coding standards forbid them. </p>