Hi! I checked the latest spec against our implementation and found the following differences:
* javax.enterprise.event.Observer got dropped from the Spec
* public <T> Set<Observer<T>> resolveObservers(T event, Annotation...
qualifiers);
got refactored to
public <T> Set<ObserverMethod<? super T>> resolveObserverMethods(T event,
Annotation... qualifiers);
But especially removing the Observer requires a lot of changes in our code. I
start working on it, but not sure if I succeed :)
LieGrue,
strub
