From 3f2e27f24f1d78338158595b6c7a0aeee56b6e61 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 28 Aug 2017 15:45:09 +0200 Subject: [PATCH] Fix Javadoc formatting in AnnotationBeanConfigurerAspect --- .../beans/factory/aspectj/AnnotationBeanConfigurerAspect.aj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-aspects/src/main/java/org/springframework/beans/factory/aspectj/AnnotationBeanConfigurerAspect.aj b/spring-aspects/src/main/java/org/springframework/beans/factory/aspectj/AnnotationBeanConfigurerAspect.aj index cd3a128fdd..e1c09275bd 100644 --- a/spring-aspects/src/main/java/org/springframework/beans/factory/aspectj/AnnotationBeanConfigurerAspect.aj +++ b/spring-aspects/src/main/java/org/springframework/beans/factory/aspectj/AnnotationBeanConfigurerAspect.aj @@ -1,5 +1,5 @@ /* - * Copyright 2002-2014 the original author or authors. + * Copyright 2002-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -32,8 +32,8 @@ import org.springframework.beans.factory.wiring.BeanConfigurerSupport; * Concrete aspect that uses the {@link Configurable} annotation to identify * which classes need autowiring. * - *

The bean name to look up will be taken from the {@code @Configurable} - * annotation if specified, otherwise the default bean name to look up will be + *

The bean name to look up will be taken from the {@code @Configurable} + * annotation if specified; otherwise, the default bean name to look up will be * the fully qualified name of the class being configured. * * @author Rod Johnson