Browse Source

Added generic parameter to declaration of BasicPersistentProperty.

pull/2/head
Oliver Gierke 15 years ago
parent
commit
f8efa1af5e
  1. 2
      spring-data-commons-core/src/main/java/org/springframework/data/mapping/BasicPersistentProperty.java

2
spring-data-commons-core/src/main/java/org/springframework/data/mapping/BasicPersistentProperty.java

@ -34,7 +34,7 @@ import java.util.List;
/** /**
* @author Jon Brisbin <jbrisbin@vmware.com> * @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 String name;
protected final Class<T> type; protected final Class<T> type;

Loading…
Cancel
Save