16 lines
174 B
Plaintext
16 lines
174 B
Plaintext
== Compliant Solution
|
|
|
|
[source,text]
|
|
----
|
|
class MyClass {
|
|
|
|
/**
|
|
* @deprecated (when, why, refactoring advice...)
|
|
*/
|
|
@Deprecated
|
|
public void foo1() {
|
|
}
|
|
|
|
}
|
|
----
|