rspec/rules/S1224/rule.adoc

28 lines
511 B
Plaintext
Raw Normal View History

== Why is this an issue?
Having a duplication between a field name and a method name is confusing, misleading, and probably an indication that the field name should be updated to be more meaningful.
=== Noncompliant code example
2022-02-04 17:28:24 +01:00
[source,text]
----
public class Foo {
public int sum; // Noncompliant, matching sum() method name
public int sum() {...}
}
----
=== Compliant solution
2022-02-04 17:28:24 +01:00
[source,text]
----
public class Foo {
public int sumTotal; // Compliant
public int sum() {...}
}
----