blob: bb1340e83799273669021a861681ff0ffc610fd3 [file] [log] [blame]
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
public class Deprecations {
/** @deprecated */
public int byComment;
/** @deprecated */
@Deprecated
public int byAnno;
public Deprecations() {
}
/** @deprecated */
public void byComment() {
}
/** @deprecated */
@Deprecated
public void byAnno() {
}
/** @deprecated */
@Deprecated
public static class ByAnno {
public ByAnno() {
}
}
/** @deprecated */
public static class ByComment {
public ByComment() {
}
}
}