Using @Getter in the List field works fine, but when trying to switch to Java 8, I came across a ConcurrentModificationException because the recipient created by Lombok does not execute a copy of the field, which is important if you want to prevent external modification of the state of the instance.
Any ideas on how I can get Lombok to copy Collection to getters, or am I just writing my own?
source share