Skip to content

Commit

Permalink
checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
mizuo-san committed Dec 29, 2024
1 parent a82956b commit 2997728
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/core/basesyntax/Ball.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public class Ball {
private Color color;
private int number;

public Ball(Color color, int number){
public Ball(Color color, int number) {
this.color = color;
this.number = number;
}
Expand All @@ -13,15 +13,15 @@ public Color getColor() {
return color;
}

public void setColor(Color color){
public void setColor(Color color) {
this.color = color;
}

public int getNumber() {
return number;
}

public void setNumber(int number){
public void setNumber(int number) {
this.number = number;
}

Expand Down

0 comments on commit 2997728

Please sign in to comment.