]> Git Server - tankstelle.git/commitdiff
get method
authorNils\Goebbert <adamantschild@gmail.com>
Mon, 10 Nov 2025 09:35:37 +0000 (10:35 +0100)
committerNils\Goebbert <adamantschild@gmail.com>
Mon, 10 Nov 2025 09:35:37 +0000 (10:35 +0100)
src/main/java/de/diejungsvondertanke/tankstelle/Fuel.java

index 4d389b20f5ed48233be0a2d76619aade917823ef..0a46dc7b3a3f81017dbb1fa5743636cf4bed986c 100644 (file)
@@ -44,4 +44,8 @@ public class Fuel {
     public void set_stored_amound (float stored_amount){
         this.stored_amount = stored_amount;
     }
+
+    public float  get_stored_amound (){
+        return this.stored_amount;
+    }
 }