Skip to content

Commit

Permalink
Merge pull request #14 from ParadoxGameConverters/IhateTrains-patch-1…
Browse files Browse the repository at this point in the history
… #patch

Add spaces around assignment operator
  • Loading branch information
IhateTrains authored Aug 14, 2023
2 parents 0acef9a + 594b85f commit d288d89
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public string SerializeProperties(string indent) {
");
} else {
codeBuilder.AppendLine($@"
{lineVariableName} = $""{propertyModel.SerializedName}={{PDXSerializer.Serialize({propertyModel.Name}, indent)}}"";
{lineVariableName} = $""{propertyModel.SerializedName} = {{PDXSerializer.Serialize({propertyModel.Name}, indent)}}"";
");
}
if (propertyModel.CanBeNull) {
Expand Down Expand Up @@ -287,4 +287,4 @@ public void Initialize(GeneratorInitializationContext context) {
context.RegisterForSyntaxNotifications(() => new SerializationByPropertiesReceiver());
}
}
}
}

0 comments on commit d288d89

Please sign in to comment.