Skip to content

Commit

Permalink
232983
Browse files Browse the repository at this point in the history
  • Loading branch information
YarikNarozhnyi committed Nov 18, 2024
1 parent 8c7e9ae commit b39304f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/java/core/basesyntax/AbstractColor.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
public abstract class AbstractColor {
private String color;

public AbstractColor(String color) {
this.color = color;
}
public AbstractColor(String color) {
this.color = color;
}

public String getColor() {
return color;
}
public String getColor() {
return color;
}
}

0 comments on commit b39304f

Please sign in to comment.