Fixed a failing test.
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user