20 lines
395 B
Plaintext
20 lines
395 B
Plaintext
== Why is this an issue?
|
|
|
|
include::../description.adoc[]
|
|
|
|
[source,dart]
|
|
----
|
|
@Deprecated("This function is deprecated, use newFunction instead", ReplaceWith("newFunction()"))
|
|
void oldFunction() {
|
|
println("This is the old function.");
|
|
}
|
|
|
|
void newFunction() {
|
|
println("This is the new function.");
|
|
}
|
|
|
|
oldFunction() // Noncompliant: "oldFunction is deprecated"
|
|
----
|
|
|
|
include::../see.adoc[]
|