rspec/rules/S1186/apex/rule.adoc
2020-06-30 17:16:12 +02:00

17 lines
202 B
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
----
public void doSomething() {
}
----
== Compliant Solution
----
public void doSomething() {
// Do nothing because of X and Y.
}
----