mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
remove the Object[] transient from the test
This commit is contained in:
@@ -10,7 +10,6 @@ import javax.persistence.GenerationType;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.OneToMany;
|
||||
import javax.persistence.Table;
|
||||
import javax.persistence.Transient;
|
||||
|
||||
import com.avaje.ebean.annotation.PrivateOwned;
|
||||
|
||||
@@ -31,9 +30,6 @@ public class TSMaster {
|
||||
|
||||
boolean active;
|
||||
|
||||
@Transient
|
||||
Object[] someArray;
|
||||
|
||||
@OneToMany(cascade=CascadeType.ALL,mappedBy="master")
|
||||
@PrivateOwned
|
||||
List<TSDetail> details;
|
||||
@@ -84,13 +80,5 @@ public class TSMaster {
|
||||
}
|
||||
details.add(detail);
|
||||
}
|
||||
|
||||
public Object[] getSomeArray() {
|
||||
return someArray;
|
||||
}
|
||||
|
||||
public void setSomeArray(Object[] someArray) {
|
||||
this.someArray = someArray;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user