Fixed a failing test.

This commit is contained in:
Jon Brisbin
2012-05-09 10:00:19 -05:00
parent e1e460e718
commit 6e0f9a4162

View File

@@ -6,8 +6,6 @@ import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import org.springframework.data.rest.repository.annotation.RestResource;
/**
* @author Jon Brisbin <jbrisbin@vmware.com>
*/
@@ -18,7 +16,6 @@ public class Family {
@GeneratedValue
private Long id;
private String surname;
@RestResource(exported = false)
@OneToMany
private List<Person> members;