Fixed some formatting issues
Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
@ -1,9 +1,8 @@
|
|||||||
package de.dis2017.data;
|
package de.dis2017.data;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Contract data class
|
* Contract data class
|
||||||
*/
|
*/
|
||||||
import java.util.Date;
|
|
||||||
|
|
||||||
public class Contract {
|
public class Contract {
|
||||||
private int contractNo = -1;
|
private int contractNo = -1;
|
||||||
private String date;
|
private String date;
|
||||||
@ -34,6 +33,4 @@ public class Contract {
|
|||||||
public void setPerson(int person) {
|
public void setPerson(int person) {
|
||||||
this.person = person;
|
this.person = person;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -29,6 +29,4 @@ public class PurchaseContract extends Contract {
|
|||||||
public void setHouse(int house) {
|
public void setHouse(int house) {
|
||||||
this.house = house;
|
this.house = house;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -40,6 +40,4 @@ public class TenancyContract extends Contract {
|
|||||||
public void setApartment(int apartment) {
|
public void setApartment(int apartment) {
|
||||||
this.apartment = apartment;
|
this.apartment = apartment;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user