mirror of
https://github.com/st-tu-dresden-praktikum/swt23w23
synced 2024-07-19 21:04:36 +02:00
Reorder setters/getters in InventoryMutateForm
Some methods were not ordered before.
This commit is contained in:
parent
70e835a5e6
commit
016d2f5715
|
@ -59,14 +59,14 @@ abstract class InventoryMutateForm {
|
||||||
return metric;
|
return metric;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setName(String name) {
|
|
||||||
this.name = name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Set<OrderType> getOrderTypes() {
|
public Set<OrderType> getOrderTypes() {
|
||||||
return orderTypes;
|
return orderTypes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
public void setQuantity(Long quantity) {
|
public void setQuantity(Long quantity) {
|
||||||
this.quantity = quantity;
|
this.quantity = quantity;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue