Code cleaning.

This commit is contained in:
Florian THIERRY
2024-03-12 09:18:30 +01:00
parent 3dd88648df
commit 2c6a917cc2

View File

@@ -28,10 +28,12 @@ public class AuthorBuilder {
this.id = id; this.id = id;
return this; return this;
} }
public AuthorBuilder withName(String name) { public AuthorBuilder withName(String name) {
this.name = name; this.name = name;
return this; return this;
} }
public AuthorBuilder withImage(String image) { public AuthorBuilder withImage(String image) {
this.image = image; this.image = image;
return this; return this;