Closed ristogod closed 2 weeks ago
Describe the bug If my property uses init; it still generates
init;
To Reproduce
[With] public partial class MyClass { public string MyProperty { get; init: } }
Generates
partial class MyClass { public MyClass WithMyProperty(string myProperty) { this.MyProperty = myProperty; return this; } }
Expected behavior
partial class MyClass { }
Environment info
.NET version: 8.0 Lombok.NET version: 2.4.0
Thank you for the issue, the fix is available in v2.4.1.
Describe the bug If my property uses
init;
it still generatesTo Reproduce
Generates
Expected behavior
Environment info
.NET version: 8.0 Lombok.NET version: 2.4.0