JavaDoc adjustments

This commit is contained in:
Lukas Bauer
2024-10-08 19:46:23 +02:00
parent 865b0fc33c
commit 1b7b842ca7
2 changed files with 4 additions and 4 deletions

View File

@@ -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) {

View File

@@ -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());