Skip to content

Commit

Permalink
Fix incorrect base class for CommandMapper (#1928)
Browse files Browse the repository at this point in the history
  • Loading branch information
hartez committed Aug 3, 2021
1 parent 661beaf commit 7c4c2af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Core/src/CommandMapper.cs
Expand Up @@ -89,14 +89,14 @@ public CommandMapper(CommandMapper chained)
SetPropertyCore(key, (h, v, o) => action?.Invoke((TViewHandler)h, (TVirtualView)v, o));
}

public class CommandMapper<TVirtualView> : PropertyMapper<TVirtualView, IElementHandler>
public class CommandMapper<TVirtualView> : CommandMapper<TVirtualView, IElementHandler>
where TVirtualView : IElement
{
public CommandMapper()
{
}

public CommandMapper(PropertyMapper chained)
public CommandMapper(CommandMapper chained)
: base(chained)
{
}
Expand Down

0 comments on commit 7c4c2af

Please sign in to comment.