rspec/rules/S2326/rule.adoc

32 lines
403 B
Plaintext
Raw Permalink Normal View History

== Why is this an issue?
2020-06-30 12:48:07 +02:00
include::description.adoc[]
=== Noncompliant code example
[source,text]
----
public class MoreMath<T> // Noncompliant; <T> is ignored
{
public int Add<T>(int a, int b) // Noncompliant; <T> is ignored
{
return a + b;
}
}
----
=== Compliant solution
[source,text]
----
public class MoreMath
{
public int Add (int a, int b)
{
return a + b;
}
}
----
2020-06-30 12:48:07 +02:00