rspec/rules/S4143/rule.adoc
2023-06-12 14:18:01 +02:00

17 lines
227 B
Plaintext

== Why is this an issue?
include::description.adoc[]
{intro}
[source,java]
----
letters.put("a", "Apple");
letters.put("a", "Boy"); // Noncompliant
towns[i] = "London";
towns[i] = "Chicago"; // Noncompliant
----
{outro}