Skip to content

Commit f4ac9eb

Browse files
committed
Remove redundant extends in generics
1 parent ae65225 commit f4ac9eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commons-vfs2/src/main/java/org/apache/commons/vfs2/util/DelegatingFileSystemOptionsBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ private boolean convertValuesAndInvoke(final Method configSetter, final Context
134134
type = objectType;
135135
}
136136

137-
final Class<? extends Object> valueClass = ctx.values[0].getClass();
137+
final Class<?> valueClass = ctx.values[0].getClass();
138138
if (type.isAssignableFrom(valueClass)) {
139139
// can set value directly
140140
invokeSetter(valueParameter, ctx, configSetter, ctx.values);

0 commit comments

Comments
 (0)