From 5b5319a659e622c5f15781965dc52f2c28846c19 Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Fri, 26 Jan 2024 14:45:44 +0100 Subject: [PATCH] Polishing --- .../java/org/springframework/expression/BeanResolver.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 7530c36f6e..decb1e0ca8 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