Skip to content

Commit 4c4f19e

Browse files
committed
SPR-6977: updated copyright; added method comment
1 parent 145dcfd commit 4c4f19e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

org.springframework.core/src/main/java/org/springframework/core/GenericTypeResolver.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2009 the original author or authors.
2+
* Copyright 2002-2010 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -164,6 +164,9 @@ else if (genericIfc.isAssignableFrom((Class) ifc)) {
164164
return null;
165165
}
166166

167+
/**
168+
* Extract a class instance from given Type.
169+
*/
167170
private static Class extractClass(Class ownerClass, Type arg) {
168171
if (arg instanceof TypeVariable) {
169172
TypeVariable tv = (TypeVariable) arg;

0 commit comments

Comments
 (0)