Files
lombok/test/transform/resource/before/WithMethodMarkedDeprecated.java
T
2020-12-20 14:03:28 +01:00

15 lines
207 B
Java

import lombok.With;
class WithMethodMarkedDeprecated {
@Deprecated
@With int annotation;
/**
* @deprecated
*/
@With int javadoc;
WithMethodMarkedDeprecated(int annotation, int javadoc) {
}
}