mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
43 lines
640 B
Plaintext
43 lines
640 B
Plaintext
//
|
|
// 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() {
|
|
}
|
|
}
|
|
}
|