2023-05-03 11:06:20 +02:00
|
|
|
== Why is this an issue?
|
|
|
|
|
2020-06-30 12:48:07 +02:00
|
|
|
include::description.adoc[]
|
|
|
|
|
2023-05-25 14:18:12 +02:00
|
|
|
=== 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
|
|
|
|