diff --git a/spring-expression/src/main/java/org/springframework/expression/BeanResolver.java b/spring-expression/src/main/java/org/springframework/expression/BeanResolver.java index 7530c36f6ee..decb1e0ca8b 100644 --- a/spring-expression/src/main/java/org/springframework/expression/BeanResolver.java +++ b/spring-expression/src/main/java/org/springframework/expression/BeanResolver.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2021 the original author or authors. + * Copyright 2002-2024 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. @@ -19,7 +19,8 @@ package org.springframework.expression; /** * A bean resolver can be registered with the evaluation context and will kick in * for bean references: {@code @myBeanName} and {@code &myBeanName} expressions. - * The {@code &} variant syntax allows access to the factory bean where relevant. + * + *
The {@code &} variant syntax allows access to the factory bean where relevant. * * @author Andy Clement * @since 3.0.3 @@ -28,7 +29,7 @@ public interface BeanResolver { /** * Look up a bean by the given name and return a corresponding instance for it. - * For attempting access to a factory bean, the name needs a {@code &} prefix. + *
For attempting access to a factory bean, the name needs a {@code &} prefix. * @param context the current evaluation context * @param beanName the name of the bean to look up * @return an object representing the bean