From 6e0f9a416218331e92290afeb398687e980016b0 Mon Sep 17 00:00:00 2001 From: Jon Brisbin Date: Wed, 9 May 2012 10:00:19 -0500 Subject: [PATCH] Fixed a failing test. --- .../org/springframework/data/rest/repository/test/Family.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/spring-data-rest-repository/src/test/java/org/springframework/data/rest/repository/test/Family.java b/spring-data-rest-repository/src/test/java/org/springframework/data/rest/repository/test/Family.java index ba650f87e..ecfba9869 100644 --- a/spring-data-rest-repository/src/test/java/org/springframework/data/rest/repository/test/Family.java +++ b/spring-data-rest-repository/src/test/java/org/springframework/data/rest/repository/test/Family.java @@ -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 */ @@ -18,7 +16,6 @@ public class Family { @GeneratedValue private Long id; private String surname; - @RestResource(exported = false) @OneToMany private List members;