[With] renaming lombok.experimental.Wither to lombok.experimental.With

This commit is contained in:
Reinier Zwitserloot
2019-08-26 21:41:10 +02:00
parent 7bf70ed638
commit c11edbf032
88 changed files with 912 additions and 807 deletions
@@ -0,0 +1,15 @@
import lombok.With;
class WithMethodMarkedDeprecated {
@Deprecated
@With int annotation;
/**
* @deprecated
*/
@With int javadoc;
WithMethodMarkedDeprecated(int annotation, int javadoc) {
}
}