Skip to content

Commit 08a5041

Browse files
committed
Fix raw type
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@634485 13f79535-47bb-0310-9956-ffa450edef68
1 parent efe745c commit 08a5041

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/java/org/apache/commons/io/input/ClassLoaderObjectInputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public ClassLoaderObjectInputStream(
6464
protected Class<?> resolveClass(ObjectStreamClass objectStreamClass)
6565
throws IOException, ClassNotFoundException {
6666

67-
Class clazz = Class.forName(objectStreamClass.getName(), false, classLoader);
67+
Class<?> clazz = Class.forName(objectStreamClass.getName(), false, classLoader);
6868

6969
if (clazz != null) {
7070
// the classloader knows of the class

0 commit comments

Comments
 (0)