Skip to content

Commit

Permalink
Fixed JavaDoc issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mercyblitz committed Oct 23, 2018
1 parent 747cfa6 commit 880b24a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/com/alibaba/spring/util/BeanFactoryUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public static <T> T getOptionalBean(ListableBeanFactory beanFactory, String bean
* @param beanNames the names of Bean
* @param beanType the {@link Class type} of Bean
* @param <T> the {@link Class type} of Bean
* @return
* @return the read-only and non-null {@link List} of Bean names
*/
public static <T> List<T> getBeans(ListableBeanFactory beanFactory, String[] beanNames, Class<T> beanType) {

Expand All @@ -82,6 +82,5 @@ public static <T> List<T> getBeans(ListableBeanFactory beanFactory, String[] bea
}

return Collections.unmodifiableList(beans);

}
}

0 comments on commit 880b24a

Please sign in to comment.