rspec/rules/S1134/java/rule.adoc

12 lines
229 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
int divide(int numerator, int denominator) {
return numerator / denominator; // FIXME denominator value might be 0
}
----
include::../see.adoc[]