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/CommunityToolkit.Maui.SourceGenerators.Internal/Generators/BindablePropertyAttributeSourceGenerator.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -242,7 +242,7 @@ static void GenerateReadOnlyBindableProperty(StringBuilder sb, in BindableProper
242
242
.Append(", ")
243
243
.Append(info.CoerceValueMethodName)
244
244
.Append(", ")
245
-
.Append(GetDefaulteValueCreatorMethod(ininfo))
245
+
.Append(GetDefaultValueCreatorMethodName(ininfo))
246
246
.Append(");\n");
247
247
248
248
// Generate public BindableProperty from the key
@@ -298,7 +298,7 @@ static void GenerateBindableProperty(StringBuilder sb, in BindablePropertyModel
0 commit comments