From 9ba1d1437d290858d61b3bb32a517e775847553c Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Sun, 9 Oct 2011 07:54:44 +0000 Subject: [PATCH] Give ExtendedBeanInfo package-private visibility Issue: SPR-8079 --- .../main/java/org/springframework/beans/ExtendedBeanInfo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.springframework.beans/src/main/java/org/springframework/beans/ExtendedBeanInfo.java b/org.springframework.beans/src/main/java/org/springframework/beans/ExtendedBeanInfo.java index c863ab0097..6404685cd5 100644 --- a/org.springframework.beans/src/main/java/org/springframework/beans/ExtendedBeanInfo.java +++ b/org.springframework.beans/src/main/java/org/springframework/beans/ExtendedBeanInfo.java @@ -47,7 +47,7 @@ import org.springframework.util.StringUtils; * @since 3.1 * @see CachedIntrospectionResults */ -public class ExtendedBeanInfo implements BeanInfo { +class ExtendedBeanInfo implements BeanInfo { private final BeanInfo delegate; private final SortedSet propertyDescriptors = new TreeSet(new PropertyDescriptorComparator());