Reorder setters/getters in InventoryMutateForm

Some methods were not ordered before.
This commit is contained in:
Simon Bruder 2024-01-19 12:52:57 +01:00
parent 70e835a5e6
commit 016d2f5715
Signed by: simon
GPG key ID: 8D3C82F9F309F8EC

View file

@ -59,14 +59,14 @@ abstract class InventoryMutateForm {
return metric;
}
public void setName(String name) {
this.name = name;
}
public Set<OrderType> getOrderTypes() {
return orderTypes;
}
public void setName(String name) {
this.name = name;
}
public void setQuantity(Long quantity) {
this.quantity = quantity;
}