From: Robin Cheney Date: Sun, 16 Nov 2025 09:28:43 +0000 (+0100) Subject: Javadoc corrections X-Git-Url: https://git.eternal.ddnss.de/?a=commitdiff_plain;h=9f16889b70b6aef3a9e7d68556748d1500d2c6c7;p=tankstelle.git Javadoc corrections --- diff --git a/src/main/java/de/diejungsvondertanke/tankstelle/FuelStation.java b/src/main/java/de/diejungsvondertanke/tankstelle/FuelStation.java index 338203a..8b7658f 100644 --- a/src/main/java/de/diejungsvondertanke/tankstelle/FuelStation.java +++ b/src/main/java/de/diejungsvondertanke/tankstelle/FuelStation.java @@ -111,6 +111,7 @@ abstract class FuelStation { * Get the price for a specific type of fuel for this fuel station * * @param fuel_type The {@link FuelType FuelType} to get + * @return The price for a specific type of fuel for this fuel station * @throws NoSuchFuelTypeError This Error is thrown on the attempt to choose a * fuel type from a fuel station * which the fuel station does not have @@ -128,7 +129,7 @@ abstract class FuelStation { * Get the cumulative price for the amount of fuel stored * * => What you would get if you would sell all fuel of this station at the - * current prices + * current price(s) * * @return the income in € */ @@ -188,6 +189,7 @@ abstract class FuelStation { * Get the fuel amount for a specific type of fuel for this fuel station * * @param fuel_type The {@link FuelType FuelType} to get + * @return The fuel amount for a specific type of fuel for this fuel station * @throws NoSuchFuelTypeError This Error is thrown on the attempt to choose a * fuel type from a fuel station * which the fuel station does not have