Skip to content

Commit 25a65dd

Browse files
author
“A1-4U2T1NN”
committed
fix: ran ./gradlew spotlessapply to correct formating mistakes;
1 parent 78efa0f commit 25a65dd

File tree

1 file changed

+8
-1
lines changed
  • lesson_16/objects/objects_app/src/main/java/com/codedifferently/lesson16/Person

1 file changed

+8
-1
lines changed

lesson_16/objects/objects_app/src/main/java/com/codedifferently/lesson16/Person/Person.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,14 @@ public class Person {
1212
private double height;
1313
private ArrayList<String> hairColor;
1414

15-
public Person(String name, String sex, String race, int age, double height, ArrayList<String> hairColor, boolean alive) {
15+
public Person(
16+
String name,
17+
String sex,
18+
String race,
19+
int age,
20+
double height,
21+
ArrayList<String> hairColor,
22+
boolean alive) {
1623
this.name = name;
1724
this.sex = sex;
1825
this.race = race;

0 commit comments

Comments
 (0)