From ea0bf1793b515882051da2cc05a79adb9dd67a0b Mon Sep 17 00:00:00 2001 From: Jumar Macato Date: Fri, 18 May 2018 11:26:17 +0800 Subject: [PATCH] Fix CI --- src/Avalonia.Animation/Easing/Easing.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Avalonia.Animation/Easing/Easing.cs b/src/Avalonia.Animation/Easing/Easing.cs index f126a0f302..00ebacafe8 100644 --- a/src/Avalonia.Animation/Easing/Easing.cs +++ b/src/Avalonia.Animation/Easing/Easing.cs @@ -34,7 +34,7 @@ namespace Avalonia.Animation.Easings { _easingTypes = new Dictionary(); - var derivedTypes = AppDomain.CurrentDomain.GetAssemblies()z + var derivedTypes = AppDomain.CurrentDomain.GetAssemblies() .SelectMany(p => p.GetTypes()) .Where(p => p.Namespace == s_thisType.Namespace) .Where(p => p.IsSubclassOf(s_thisType))