
Co-authored-by: Amélie Renard <44666826+amelie-renard-sonarsource@users.noreply.github.com>
8 lines
159 B
Plaintext
8 lines
159 B
Plaintext
[source,csharp]
|
|
----
|
|
public string GetReadableStatus(Job j)
|
|
{
|
|
return j.IsRunning ? "Running" : j.HasErrors ? "Failed" : "Succeeded"; // Noncompliant
|
|
}
|
|
----
|