@@ -35,7 +35,7 @@ static Builder newBuilder(Set<String> profiles, ConfigPropertyPlugin plugin, Lis
35
35
36
36
/**
37
37
* Return true if the bean should be created and registered with the context.
38
- * <p/ >
38
+ * <p>
39
39
* Returning false means there has been a supplied bean already registered and
40
40
* that we should skip the creation and registration for this bean.
41
41
*
@@ -46,9 +46,9 @@ static Builder newBuilder(Set<String> profiles, ConfigPropertyPlugin plugin, Lis
46
46
47
47
/**
48
48
* Return true if the bean should be created and registered with the context.
49
- *
50
- * <p> Returning false means there has been a supplied bean already registered and that we should
51
- * skip the creation and registration for this bean.
49
+ * <p>
50
+ * Returning false means there has been a supplied bean already registered and
51
+ * that we should skip the creation and registration for this bean.
52
52
*
53
53
* @param types The types that the bean implements and provides
54
54
*/
@@ -57,13 +57,6 @@ default boolean isBeanAbsent(Type... types) {
57
57
}
58
58
59
59
/**
60
- * Return true if the bean should be created and registered with the context.
61
- *
62
- * <p>Returning false means there has been a supplied bean already registered and that we should
63
- * skip the creation and registration for this bean.
64
- *
65
- * @param name The qualifier name
66
- * @param types The types that the bean implements and provides
67
60
* @deprecated use {@link #isBeanAbsent(String, Type...)}
68
61
*/
69
62
@ Deprecated (forRemoval = true )
@@ -72,12 +65,6 @@ default boolean isAddBeanFor(String name, Type... types) {
72
65
}
73
66
74
67
/**
75
- * Return true if the bean should be created and registered with the context.
76
- *
77
- * <p>Returning false means there has been a supplied bean already registered and that we should
78
- * skip the creation and registration for this bean.
79
- *
80
- * @param types The types that the bean implements and provides
81
68
* @deprecated use {@link #isBeanAbsent(Type...)} instead
82
69
*/
83
70
@ Deprecated (forRemoval = true )
0 commit comments