Polishing

This commit is contained in:
Sébastien Deleuze 2024-02-13 14:29:18 +01:00
parent 2fe3321813
commit cc6dd19324
2 changed files with 2 additions and 2 deletions

View File

@ -1813,7 +1813,7 @@ public class DefaultListableBeanFactory extends AbstractAutowireCapableBeanFacto
* Return whether the bean definition for the given bean name has been
* marked as a primary bean.
* @param beanName the name of the bean
* @param beanInstance the corresponding bean instance (can be null)
* @param beanInstance the corresponding bean instance (can be {@code null})
* @return whether the given bean qualifies as primary
*/
protected boolean isPrimary(String beanName, Object beanInstance) {

View File

@ -85,7 +85,7 @@ public class WeavingTransformer {
* @param className the full qualified name of the class in dot format (i.e. some.package.SomeClass)
* @param internalName class name internal name in / format (i.e. some/package/SomeClass)
* @param bytes class byte definition
* @param pd protection domain to be used (can be null)
* @param pd protection domain to be used (can be {@code null})
* @return (possibly transformed) class byte definition
*/
public byte[] transformIfNecessary(String className, String internalName, byte[] bytes, @Nullable ProtectionDomain pd) {