remove old shares property

This commit is contained in:
Peter Hormanns 2017-07-28 20:15:31 +02:00
parent 7abf79e7bb
commit 4462a7157f
2 changed files with 0 additions and 8 deletions

View File

@ -98,9 +98,6 @@ public class Customer implements Serializable {
@OrderBy("name") @OrderBy("name")
private Set<Pac> pacs; private Set<Pac> pacs;
@Column(name = "shares_signed", columnDefinition = "integer")
private int sharesSigned;
public Customer() { public Customer() {
contacts = new HashSet<>(); contacts = new HashSet<>();
pacs = new HashSet<>(); pacs = new HashSet<>();
@ -256,8 +253,4 @@ public class Customer implements Serializable {
this.sepaDirectDebits = sepaDirectDebits; this.sepaDirectDebits = sepaDirectDebits;
} }
public void setSharesSigned(int sharesSigned) {
this.sharesSigned = sharesSigned;
}
} }

View File

@ -30,7 +30,6 @@ public class CustomerDaoTest extends JpaBasedTest {
Customer newCustomer = new Customer(); Customer newCustomer = new Customer();
newCustomer.setMemberNo(memberNo); newCustomer.setMemberNo(memberNo);
newCustomer.setName(memberCode); newCustomer.setName(memberCode);
newCustomer.setSharesSigned(5);
return newCustomer; return newCustomer;
} }
} }