Add covariance back to IElementConfiguration (#5771)

* add covariance back

* - remove confusing comment
This commit is contained in:
Shane Neuville 2019-04-01 14:07:59 -06:00 коммит произвёл Samantha Houts
Родитель 5f9bf9d8c4
Коммит 3439a6727d
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -1,8 +1,7 @@
namespace Xamarin.Forms
{
// Don't make this generic covariant as it causes UWP performance to tank
public interface IElementConfiguration<TElement> where TElement : Element
public interface IElementConfiguration<out TElement> where TElement : Element
{
IPlatformElementConfiguration<T, TElement> On<T>() where T : IConfigPlatform;
}