From 1b7b842ca74432afaa7647781519cce99cfa7c87 Mon Sep 17 00:00:00 2001 From: Lukas Bauer <157071544+Heady045@users.noreply.github.com> Date: Tue, 8 Oct 2024 19:46:23 +0200 Subject: [PATCH] JavaDoc adjustments --- .../main/java/pp/battleship/client/gui/SeaSynchronizer.java | 6 +++--- .../src/main/java/pp/battleship/client/gui/ShipControl.java | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Projekte/battleship/client/src/main/java/pp/battleship/client/gui/SeaSynchronizer.java b/Projekte/battleship/client/src/main/java/pp/battleship/client/gui/SeaSynchronizer.java index 18167c89..25a678d4 100644 --- a/Projekte/battleship/client/src/main/java/pp/battleship/client/gui/SeaSynchronizer.java +++ b/Projekte/battleship/client/src/main/java/pp/battleship/client/gui/SeaSynchronizer.java @@ -211,7 +211,7 @@ private Spatial createBattleship(Battleship ship) { /** * Creates a detailed 3D model to represent a "Big Ship" - * @param ship + * @param ship The Battleship object with position and rotation info. * @return the spatial representing the "Big Ship" battleship */ private Spatial createBigShip(Battleship ship) { @@ -227,7 +227,7 @@ private Spatial createBigShip(Battleship ship) { /** * Creates a detailed 3D model to represent a "Medium Ship" - * @param ship + * @param ship The Battleship object with position and rotation info. * @return the spatial representing the "Medium Ship" battleship */ private Spatial createMediumShip(Battleship ship) { @@ -243,7 +243,7 @@ private Spatial createMediumShip(Battleship ship) { /** * Creates a detailed 3D model to represent a "Small Ship" - * @param ship + * @param ship The Battleship object with position and rotation info. * @return the spatial representing the "Small Ship" battleship */ private Spatial createSmallShip(Battleship ship) { diff --git a/Projekte/battleship/client/src/main/java/pp/battleship/client/gui/ShipControl.java b/Projekte/battleship/client/src/main/java/pp/battleship/client/gui/ShipControl.java index 2c0214c4..438a695d 100644 --- a/Projekte/battleship/client/src/main/java/pp/battleship/client/gui/ShipControl.java +++ b/Projekte/battleship/client/src/main/java/pp/battleship/client/gui/ShipControl.java @@ -56,7 +56,7 @@ class ShipControl extends AbstractControl { */ private final Battleship battleship; /** - * + * Logger for logging messages related to ShipControl operations. */ static final Logger LOGGER = System.getLogger(ShipControl.class.getName());