Skip to content

Commit 2dc6228

Browse files
committed
Use an existing import instead of a FQCN
1 parent 6bd3d00 commit 2dc6228

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class DefaultBeanIntrospector implements BeanIntrospector {
5353
private static final Class<?>[] EMPTY_CLASS_PARAMETERS = new Class[0];
5454

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

5858
/** Log instance */
5959
private final Log log = LogFactory.getLog(getClass());

0 commit comments

Comments
 (0)