mirror of
https://github.com/moparisthebest/fernflower
synced 2024-10-31 23:45:08 -04:00
28 lines
418 B
Plaintext
28 lines
418 B
Plaintext
|
package pkg;
|
||
|
|
||
|
public class TestDeprecations {
|
||
|
/** @deprecated */
|
||
|
public int byComment;
|
||
|
/** @deprecated */
|
||
|
@Deprecated
|
||
|
public int byAnno;
|
||
|
|
||
|
/** @deprecated */
|
||
|
public void byComment() {
|
||
|
}
|
||
|
|
||
|
/** @deprecated */
|
||
|
@Deprecated
|
||
|
public void byAnno() {
|
||
|
}
|
||
|
|
||
|
/** @deprecated */
|
||
|
@Deprecated
|
||
|
public static class ByAnno {
|
||
|
}
|
||
|
|
||
|
/** @deprecated */
|
||
|
public static class ByComment {
|
||
|
}
|
||
|
}
|