Skip to content

Commit 9a26490

Browse files
committed
javadoc only, for the deprecated methods remove the "duplicate" docs
1 parent bad3f7c commit 9a26490

File tree

1 file changed

+4
-17
lines changed

1 file changed

+4
-17
lines changed

inject/src/main/java/io/avaje/inject/spi/Builder.java

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ static Builder newBuilder(Set<String> profiles, ConfigPropertyPlugin plugin, Lis
3535

3636
/**
3737
* Return true if the bean should be created and registered with the context.
38-
* <p/>
38+
* <p>
3939
* Returning false means there has been a supplied bean already registered and
4040
* that we should skip the creation and registration for this bean.
4141
*
@@ -46,9 +46,9 @@ static Builder newBuilder(Set<String> profiles, ConfigPropertyPlugin plugin, Lis
4646

4747
/**
4848
* 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.
5252
*
5353
* @param types The types that the bean implements and provides
5454
*/
@@ -57,13 +57,6 @@ default boolean isBeanAbsent(Type... types) {
5757
}
5858

5959
/**
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
6760
* @deprecated use {@link #isBeanAbsent(String, Type...)}
6861
*/
6962
@Deprecated(forRemoval = true)
@@ -72,12 +65,6 @@ default boolean isAddBeanFor(String name, Type... types) {
7265
}
7366

7467
/**
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
8168
* @deprecated use {@link #isBeanAbsent(Type...)} instead
8269
*/
8370
@Deprecated(forRemoval = true)

0 commit comments

Comments
 (0)