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
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<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>
Loading