*
* @author Leander Schnurrer
*/
-- public static void addNewFuelstation(String supermarket_company) {
++ public static void addNewFuelStation(String supermarket_company) {
while (supermarket_company.isEmpty()) {
// TODO: Show error in UI
}
*
* @author Leander Schnurrer
*/
-- public static void addNewFuelstation(float retail_space) {
++ public static void addNewFuelStation(float retail_space) {
while (retail_space <= 0) {
// TODO: Show error in UI
}
*
* @author Leander Schnurrer
*/
-- public static void addNewFuelstation(short number_of_vending_machines) {
++ public static void addNewFuelStation(short number_of_vending_machines) {
while (number_of_vending_machines <= 0) {
// TODO: Show error in UI
}