corrige builde

This commit is contained in:
El-Ouali Abderrahman 2024-06-04 17:33:29 +02:00
parent 4a156236f6
commit 989519ac8f
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,17 @@
public class PointBuilder {
private int x;
private int y;
public PointBuilder setx(int x) {
this.x = x;
return this;
}
public PointBuilder sety(int y) {
this.y = y;
return this;
}
}

Binary file not shown.