Skip to content

Commit

Permalink
Remove old comment and whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
inputfalken committed Sep 19, 2023
1 parent 6411a76 commit d6b3973
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
1 change: 0 additions & 1 deletion SampleApp/Address.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ public class Address
public PostalCode PostalCode { get; set; } = null!;

public List<PersonEntity> Neighbours { get; set; }

Check warning on line 11 in SampleApp/Address.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'Neighbours' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.

}
12 changes: 2 additions & 10 deletions SampleApp/PostalCode.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
using System.Collections.Generic;
using Amazon.DynamoDBv2.DataModel;
using DynamoDBGenerator;
namespace SampleApp;

namespace SampleApp;

public partial class PostalCode
public class PostalCode
{
public string ZipCode { get; set; } = null!;

public string Town { get; set; } = null!;

// We could provide a cache to determine whether this symbol has already been generated amd filter it out to avoid recursive constructor.

}

0 comments on commit d6b3973

Please sign in to comment.