
I removed abap, flex, pli and rpg dummy implementations since they're not implemented in the corresponding analyzer and there are no tickets open to do so.
7 lines
155 B
Plaintext
7 lines
155 B
Plaintext
[source,csharp]
|
|
----
|
|
private int Divide(int numerator, int denominator)
|
|
{
|
|
return numerator / denominator; // FIXME denominator value might be 0
|
|
}
|
|
---- |