From 61ed20f6a3cfe2ba3e039fcaf118eee42b0bb407 Mon Sep 17 00:00:00 2001 From: MatteoPellegrino05 Date: Wed, 6 May 2026 19:00:22 +0200 Subject: [PATCH] Fix: Artist JavaDoc parameter descriptions --- .../Model/Cards/TribeCards/Characters/Artist.java | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/main/java/it/polimi/ingsw/gc14/Model/Cards/TribeCards/Characters/Artist.java b/src/main/java/it/polimi/ingsw/gc14/Model/Cards/TribeCards/Characters/Artist.java index 1a4953f..f31314f 100644 --- a/src/main/java/it/polimi/ingsw/gc14/Model/Cards/TribeCards/Characters/Artist.java +++ b/src/main/java/it/polimi/ingsw/gc14/Model/Cards/TribeCards/Characters/Artist.java @@ -32,21 +32,22 @@ public class Artist extends Character { } /** - * Creates an Artist character card with the specified era. + * Creates an Artist character card with the specified image id and era. * - * @param idIMG - * @param Era the era of the Artist card + * @param idIMG the image identifier of the Artist card. + * @param Era the era of the Artist card. */ public Artist(String idIMG,int Era) { super(idIMG,Era, CharacterType.ARTIST); } /** - * Creates an Artist character card with the specified Era and minimum number of players required to play it. + * Creates an Artist character card with the specified image id, era and + * minimum number of players required to play it. * - * @param idIMG - * @param Era the era of the Artist card - * @param nMin the minimum number of players required for the card + * @param idIMG the image identifier of the Artist card. + * @param Era the era of the Artist card. + * @param nMin the minimum number of players required for the card. */ public Artist(String idIMG,int Era,int nMin) { super(idIMG,Era, CharacterType.ARTIST,nMin);