Skip to content
This repository has been archived by the owner on Jan 15, 2021. It is now read-only.

Commit

Permalink
Remove virtual from overloads in AlternateType
Browse files Browse the repository at this point in the history
  • Loading branch information
avanderhoorn committed Dec 5, 2012
1 parent 71203ba commit 70a3823
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Glimpse.Core/Extensibility/AlternateType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ protected AlternateType(IProxyFactory proxyFactory)

public abstract IEnumerable<IAlternateMethod> AllMethods { get; }

public virtual bool TryCreate(T originalObj, out T newObj)
public bool TryCreate(T originalObj, out T newObj)
{
return TryCreate(originalObj, out newObj, null, null);
}

public virtual bool TryCreate(T originalObj, out T newObj, IEnumerable<object> mixins)
public bool TryCreate(T originalObj, out T newObj, IEnumerable<object> mixins)
{
return TryCreate(originalObj, out newObj, mixins, null);
}
Expand Down

0 comments on commit 70a3823

Please sign in to comment.