Andrei Branza - some missed tabs

This commit is contained in:
Andrei Branza 2024-02-24 21:14:44 +02:00
parent 65437b41ad
commit 6efb061da7
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ import lombok.*;
@ToString
public class Address implements Cloneable {
private String streetName;
private String streetName;
private String cityName;
}

View File

@ -23,6 +23,6 @@ public class Person implements Cloneable {
@Override
public Person clone() {
return new Person(this);
}
return new Person(this);
}
}