Hi! Just stumbled across the following code which is not thread safe. Do we need this? Or can we assume that this happens in a single thread anyway?
public void addAnnotation(final Annotation annotation) {
this.annotations = ArrayUtils.add(annotations, annotation);
}
LieGrue,
strub
