We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 145dcfd commit 4c4f19eCopy full SHA for 4c4f19e
org.springframework.core/src/main/java/org/springframework/core/GenericTypeResolver.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2002-2009 the original author or authors.
+ * Copyright 2002-2010 the original author or authors.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -164,6 +164,9 @@ else if (genericIfc.isAssignableFrom((Class) ifc)) {
164
return null;
165
}
166
167
+ /**
168
+ * Extract a class instance from given Type.
169
+ */
170
private static Class extractClass(Class ownerClass, Type arg) {
171
if (arg instanceof TypeVariable) {
172
TypeVariable tv = (TypeVariable) arg;
0 commit comments