Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
Fixes #41 - Implement CheetahCDI.select
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem committed Dec 22, 2023
1 parent e7ce923 commit 97d18a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion impl/src/main/java/com/manorrock/cheetah/CheetahCDI.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ public BeanManager getBeanManager() {
return beanManager;
}

@Override
public Instance select(Annotation... qualifiers) {
throw new UnsupportedOperationException("Not supported yet.");
return select((Class) null, qualifiers);
}

public Instance select(Class subtype, Annotation... qualifiers) {
Expand Down

0 comments on commit 97d18a0

Please sign in to comment.