Skip to content

Commit dd00c5a

Browse files
committed
Use an existing import instead of a FQCN
1 parent 29b97e8 commit dd00c5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/commons/beanutils2/DefaultBeanIntrospector.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public class DefaultBeanIntrospector implements BeanIntrospector {
4848
public static final BeanIntrospector INSTANCE = new DefaultBeanIntrospector();
4949

5050
/** Constant for arguments types of a method that expects a list argument. */
51-
private static final Class<?>[] LIST_CLASS_PARAMETER = new Class[] { java.util.List.class };
51+
private static final Class<?>[] LIST_CLASS_PARAMETER = new Class[] { List.class };
5252

5353
/** For logging. Each subclass gets its own log instance. */
5454
private final Log log = LogFactory.getLog(getClass());

0 commit comments

Comments
 (0)