
Co-authored-by: Amélie Renard <44666826+amelie-renard-sonarsource@users.noreply.github.com>
7 lines
161 B
Plaintext
7 lines
161 B
Plaintext
[source,java]
|
|
----
|
|
public String getReadableStatus(Job j) {
|
|
return j.isRunning() ? "Running" : j.hasErrors() ? "Failed" : "Succeeded"; // Noncompliant
|
|
}
|
|
----
|