17 lines
202 B
Plaintext
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.
|
|
}
|
|
----
|