Skip to content

Commit cc6dd19

Browse files
committed
Polishing
1 parent 2fe3321 commit cc6dd19

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultListableBeanFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1813,7 +1813,7 @@ else if (candidatePriority < highestPriority) {
18131813
* Return whether the bean definition for the given bean name has been
18141814
* marked as a primary bean.
18151815
* @param beanName the name of the bean
1816-
* @param beanInstance the corresponding bean instance (can be null)
1816+
* @param beanInstance the corresponding bean instance (can be {@code null})
18171817
* @return whether the given bean qualifies as primary
18181818
*/
18191819
protected boolean isPrimary(String beanName, Object beanInstance) {

spring-context/src/main/java/org/springframework/instrument/classloading/WeavingTransformer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public byte[] transformIfNecessary(String className, byte[] bytes) {
8585
* @param className the full qualified name of the class in dot format (i.e. some.package.SomeClass)
8686
* @param internalName class name internal name in / format (i.e. some/package/SomeClass)
8787
* @param bytes class byte definition
88-
* @param pd protection domain to be used (can be null)
88+
* @param pd protection domain to be used (can be {@code null})
8989
* @return (possibly transformed) class byte definition
9090
*/
9191
public byte[] transformIfNecessary(String className, String internalName, byte[] bytes, @Nullable ProtectionDomain pd) {

0 commit comments

Comments
 (0)