You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Controls/src/Xaml/XmlTypeXamlExtensions.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -27,8 +27,8 @@
27
27
// THE SOFTWARE.
28
28
29
29
usingSystem;
30
-
usingSystem.Linq;
31
30
usingSystem.Collections.Generic;
31
+
usingSystem.Linq;
32
32
33
33
namespaceMicrosoft.Maui.Controls.Xaml
34
34
{
@@ -105,7 +105,7 @@ public static IEnumerable<T> GetTypeReferences<T>(
105
105
T?type=null;
106
106
string?returnTypeName=null;
107
107
foreach(vartypeInfoinpotentialTypes)
108
-
if((returnTypeName==null||returnTypeName==typeInfo.typeName)//only return multiple types if they share the same name. avoid returning both BindingExtension and Binding
108
+
if((returnTypeName==null||returnTypeName==typeInfo.typeName)//only return multiple types if they share the same name. avoid returning both BindingExtension and Binding
0 commit comments