Closed kaefer3000 closed 9 years ago
Seems right from a quick inspection. Pity that this component has no unit tests. (Hickory, etc.)
So, what can I do? I could give you anecdotal evidence that annotating with one class works as it did with release 1.5 (946ddf9):
@MetaInfServices(Object.class)
public class AnnotatedTestClass {}
Now annotating with multiple classes works, too:
@MetaInfServices({Class.class, Object.class})
public class DoubleAnnotatedTestClass {}
I had the need for multiple entries in an annotation. This patch did the trick for me. Cheers!