OPENJPA-1050: Use generics

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1236282 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Pinaki Poddar 2012-01-26 16:37:54 +00:00
parent 7def6f8a67
commit 3929e28cda
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ public class FieldMetaData
/**
* The declaring class.
*/
public Class getDeclaringType() {
public Class<?> getDeclaringType() {
return (_dec == null) ? _owner.getDescribedType() : _dec;
}