File tree 2 files changed +1
-17
lines changed
inject/src/main/java/io/avaje/inject/spi
inject-test/src/test/java/org/example/custom
2 files changed +1
-17
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ void customScopeAll() {
80
80
81
81
// includes the 2 supplied beans
82
82
final List <BeanEntry > all = beanScope .all ();
83
- assertThat (all ).hasSize (6 );
83
+ assertThat (all ).hasSize (7 );
84
84
85
85
final CustomBean customBean = beanScope .get (CustomBean .class );
86
86
Original file line number Diff line number Diff line change @@ -56,22 +56,6 @@ default boolean isBeanAbsent(Type... types) {
56
56
return isBeanAbsent (null , types );
57
57
}
58
58
59
- /**
60
- * @deprecated use {@link #isBeanAbsent(String, Type...)}
61
- */
62
- @ Deprecated (forRemoval = true )
63
- default boolean isAddBeanFor (String name , Type ... types ) {
64
- return isBeanAbsent (name , types );
65
- }
66
-
67
- /**
68
- * @deprecated use {@link #isBeanAbsent(Type...)} instead
69
- */
70
- @ Deprecated (forRemoval = true )
71
- default boolean isAddBeanFor (Type ... types ) {
72
- return isBeanAbsent (types );
73
- }
74
-
75
59
/**
76
60
* Register the next bean as having Primary priority.
77
61
* Highest priority, will be used over any other matching beans.
You can’t perform that action at this time.
0 commit comments