rspec/rules/S3741/java/rule.adoc

46 lines
765 B
Plaintext
Raw Normal View History

== Why is this an issue?
2021-04-28 16:49:39 +02:00
There is no need to declare a type parameter when naming a type constraint is not required. Using wildcards makes it easier to read.
=== Noncompliant code example
2021-04-28 16:49:39 +02:00
2022-02-04 17:28:24 +01:00
[source,java]
2021-04-28 16:49:39 +02:00
----
<T extends MyClass> void foo(List<T> list) { // Noncompliant, T is used only once
for (MyClass myObj : list) {
doSomething(myObj);
}
}
----
=== Compliant solution
2021-04-28 16:49:39 +02:00
2022-02-04 17:28:24 +01:00
[source,java]
2021-04-28 16:49:39 +02:00
----
void foo(List<? extends MyClass> list) {
for (MyClass myObj : list) {
doSomething(myObj);
}
}
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
Remove this type parameter and use a wildcard instead
=== Highlighting
Type parameter declaration
endif::env-github,rspecator-view[]