rspec/rules/S106/java/rule.adoc

24 lines
371 B
Plaintext
Raw Normal View History

2020-06-30 10:16:44 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
System.out.println("My Message"); // Noncompliant
----
== Compliant Solution
----
logger.log("My Message");
----
include::../see.adoc[]
ifdef::env-github,rspecator-view[]
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]