Skip to content

Commit b14a5f4

Browse files
authored
Merge pull request #1121 from TombEngine/copilot/sub-pr-1120
Fix duplicate property declaration in ScriptGenerationResult record
2 parents 422e807 + 83c3a4a commit b14a5f4

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

TombIDE/TombIDE.Shared/SharedClasses/ScriptGenerationResult.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,9 @@ public sealed record GeneratedScriptFile(string RelativePath, string Content);
1515
/// Contains the results of script generation, with explicit separation between
1616
/// gameflow script content and language file content.
1717
/// </summary>
18+
/// <param name="DataFileName">The data file name (without extension) used to generate the script.</param>
1819
public sealed record ScriptGenerationResult(string DataFileName)
1920
{
20-
/// <summary>
21-
/// The data file name (without extension) used to generate the script.
22-
/// </summary>
23-
public string DataFileName { get; init; } = DataFileName;
24-
2521
/// <summary>
2622
/// Text to append to the main gameflow/script file.
2723
/// </summary>

0 commit comments

Comments
 (0)