diff --git a/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/items/L2Henna.java b/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/items/L2Henna.java index 7aacc1d578..9843628299 100644 --- a/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/items/L2Henna.java +++ b/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/items/L2Henna.java @@ -34,7 +34,6 @@ import com.l2jmobius.gameserver.model.stats.Stats; public class L2Henna { private final int _dyeId; - private final String _dyeName; private final int _dyeItemId; private final boolean _isPremium; private final Map _baseStats = new HashMap<>(); @@ -49,7 +48,6 @@ public class L2Henna public L2Henna(StatsSet set) { _dyeId = set.getInt("dyeId"); - _dyeName = set.getString("dyeName"); _dyeItemId = set.getInt("dyeItemId"); _isPremium = set.getBoolean("isPremium", false); _baseStats.put(BaseStats.STR, set.getInt("str", 0)); @@ -77,14 +75,6 @@ public class L2Henna return _dyeId; } - /** - * @return the dye server-side name. - */ - public String getDyeName() - { - return _dyeName; - } - /** * @return the item Id, required for this dye. */ diff --git a/L2J_Mobius_2.5_Underground/java/com/l2jmobius/gameserver/model/items/L2Henna.java b/L2J_Mobius_2.5_Underground/java/com/l2jmobius/gameserver/model/items/L2Henna.java index 7aacc1d578..9843628299 100644 --- a/L2J_Mobius_2.5_Underground/java/com/l2jmobius/gameserver/model/items/L2Henna.java +++ b/L2J_Mobius_2.5_Underground/java/com/l2jmobius/gameserver/model/items/L2Henna.java @@ -34,7 +34,6 @@ import com.l2jmobius.gameserver.model.stats.Stats; public class L2Henna { private final int _dyeId; - private final String _dyeName; private final int _dyeItemId; private final boolean _isPremium; private final Map _baseStats = new HashMap<>(); @@ -49,7 +48,6 @@ public class L2Henna public L2Henna(StatsSet set) { _dyeId = set.getInt("dyeId"); - _dyeName = set.getString("dyeName"); _dyeItemId = set.getInt("dyeItemId"); _isPremium = set.getBoolean("isPremium", false); _baseStats.put(BaseStats.STR, set.getInt("str", 0)); @@ -77,14 +75,6 @@ public class L2Henna return _dyeId; } - /** - * @return the dye server-side name. - */ - public String getDyeName() - { - return _dyeName; - } - /** * @return the item Id, required for this dye. */ diff --git a/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/items/L2Henna.java b/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/items/L2Henna.java index 7aacc1d578..9843628299 100644 --- a/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/items/L2Henna.java +++ b/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/items/L2Henna.java @@ -34,7 +34,6 @@ import com.l2jmobius.gameserver.model.stats.Stats; public class L2Henna { private final int _dyeId; - private final String _dyeName; private final int _dyeItemId; private final boolean _isPremium; private final Map _baseStats = new HashMap<>(); @@ -49,7 +48,6 @@ public class L2Henna public L2Henna(StatsSet set) { _dyeId = set.getInt("dyeId"); - _dyeName = set.getString("dyeName"); _dyeItemId = set.getInt("dyeItemId"); _isPremium = set.getBoolean("isPremium", false); _baseStats.put(BaseStats.STR, set.getInt("str", 0)); @@ -77,14 +75,6 @@ public class L2Henna return _dyeId; } - /** - * @return the dye server-side name. - */ - public String getDyeName() - { - return _dyeName; - } - /** * @return the item Id, required for this dye. */ diff --git a/L2J_Mobius_CT_2.6_HighFive/java/com/l2jmobius/gameserver/model/items/L2Henna.java b/L2J_Mobius_CT_2.6_HighFive/java/com/l2jmobius/gameserver/model/items/L2Henna.java index 4f9868ec39..c8981a3358 100644 --- a/L2J_Mobius_CT_2.6_HighFive/java/com/l2jmobius/gameserver/model/items/L2Henna.java +++ b/L2J_Mobius_CT_2.6_HighFive/java/com/l2jmobius/gameserver/model/items/L2Henna.java @@ -29,7 +29,6 @@ import com.l2jmobius.gameserver.model.base.ClassId; public class L2Henna { private final int _dyeId; - private final String _dyeName; private final int _dyeItemId; private final int _str; private final int _con; @@ -46,7 +45,6 @@ public class L2Henna public L2Henna(StatsSet set) { _dyeId = set.getInt("dyeId"); - _dyeName = set.getString("dyeName"); _dyeItemId = set.getInt("dyeItemId"); _str = set.getInt("str", 0); _con = set.getInt("con", 0); @@ -69,14 +67,6 @@ public class L2Henna return _dyeId; } - /** - * @return the dye server-side name. - */ - public String getDyeName() - { - return _dyeName; - } - /** * @return the item Id, required for this dye. */ diff --git a/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/items/L2Henna.java b/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/items/L2Henna.java index 01c41a95db..4da63a5117 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/items/L2Henna.java +++ b/L2J_Mobius_Classic_2.0_Saviors/java/com/l2jmobius/gameserver/model/items/L2Henna.java @@ -34,7 +34,6 @@ import com.l2jmobius.gameserver.model.stats.Stats; public class L2Henna { private final int _dyeId; - private final String _dyeName; private final int _dyeItemId; private final Map _baseStats = new HashMap<>(); private final int _wear_fee; @@ -48,7 +47,6 @@ public class L2Henna public L2Henna(StatsSet set) { _dyeId = set.getInt("dyeId"); - _dyeName = set.getString("dyeName"); _dyeItemId = set.getInt("dyeItemId"); _baseStats.put(BaseStats.STR, set.getInt("str", 0)); _baseStats.put(BaseStats.CON, set.getInt("con", 0)); @@ -75,14 +73,6 @@ public class L2Henna return _dyeId; } - /** - * @return the dye server-side name. - */ - public String getDyeName() - { - return _dyeName; - } - /** * @return the item Id, required for this dye. */