Skip to content

Commit

Permalink
Remove meaningless attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
y-iihoshi committed Jan 2, 2025
1 parent 725891b commit 1316ec0
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions ThScoreFileConverter.Core/Models/CharacterAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,11 @@ public CharacterAttribute([Localizable(false)] string name, [Localizable(false)]
/// <summary>
/// Gets the name of the character.
/// </summary>
[Localizable(false)]
public string Name { get; }

/// <summary>
/// Gets the full name of the character.
/// </summary>
[Localizable(false)]
public string FullName { get; }

/// <summary>
Expand All @@ -80,7 +78,6 @@ public CharacterAttribute([Localizable(false)] string name, [Localizable(false)]
/// Gets the localized name of the character.
/// </summary>
/// <returns>The localized name.</returns>
[Localizable(true)]
public string GetLocalizedName()
{
return this.resourceManager.GetString(this.Name, CultureInfo.CurrentCulture) ?? this.Name;
Expand All @@ -90,7 +87,6 @@ public string GetLocalizedName()
/// Gets the localized full name of the character.
/// </summary>
/// <returns>The localized full name.</returns>
[Localizable(true)]
public string GetLocalizedFullName()
{
return this.resourceManager.GetString(this.FullName, CultureInfo.CurrentCulture) ?? this.FullName;
Expand Down

0 comments on commit 1316ec0

Please sign in to comment.