Added generic parameter to declaration of BasicPersistentProperty.

This commit is contained in:
Oliver Gierke
2011-03-12 11:50:17 +01:00
parent ca4de87a8b
commit f8efa1af5e

View File

@@ -34,7 +34,7 @@ import java.util.List;
/**
* @author Jon Brisbin <jbrisbin@vmware.com>
*/
public class BasicPersistentProperty<T> implements PersistentProperty {
public class BasicPersistentProperty<T> implements PersistentProperty<T> {
protected final String name;
protected final Class<T> type;