0
0
mirror of https://hub.spigotmc.org/stash/scm/spigot/fernflower.git synced 2024-11-23 18:16:42 +00:00
fernflower/testData/results/TestDeprecations.dec

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 {
}
}