Skip to content

Commit

Permalink
Fixes #113 and potentially #245 which were broken by recent changes
Browse files Browse the repository at this point in the history
PrePrepareFile should be an override method but the change create a new
method hiding the base version.
  • Loading branch information
ProNotion committed Nov 24, 2023
1 parent 2fe8869 commit 36a1d4f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ protected override void PrepareFile(XElement source, SyncMigrationContext contex
context.DataTypes.GetByDefinition(dtd)!.OriginalEditorAlias = editorAlias;
}
}

public void PrePrepareFiles(XElement source, SyncMigrationContext context)
protected override void PrePrepareFile(XElement source, SyncMigrationContext context)
{
var editorAlias = GetEditorAlias(source);
var (alias, dtd) = GetAliasAndKey(source, context);
Expand Down

0 comments on commit 36a1d4f

Please sign in to comment.