22 lines
315 B
Plaintext
22 lines
315 B
Plaintext
include::../description.adoc[]
|
|
|
|
include::../ask-yourself.adoc[]
|
|
|
|
include::../recommended.adoc[]
|
|
|
|
== Sensitive Code Example
|
|
|
|
----
|
|
let host = Host(address: "192.168.12.42")
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
----
|
|
let host = Host(address: configuration.ipAddress)
|
|
----
|
|
|
|
include::../exceptions.adoc[]
|
|
|
|
include::../see.adoc[]
|