[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,9 @@
class WithWithGenerics<T, J extends T, L extends java.lang.Number> {
@lombok.With J test;
@lombok.With java.util.List<L> test2;
@lombok.With java.util.List<? extends L> test3;
int $i;
public WithWithGenerics(J test, java.util.List<L> test2, java.util.List<? extends L> test3) {
}
}