Skip to content
Prev Previous commit
Next Next commit
nothing
  • Loading branch information
Russel-JX committed Nov 22, 2021
commit 6b652d6bfabd28249a50d1d72a2e6eee38ef3e14
4 changes: 2 additions & 2 deletions src/main/java/lambdasinaction/my/Java8Stream.java
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public static void forEachTest(){
*/
}

public static class Student{
public static class Student{
private String name;
private int age;
public Student(String name, int age) {
Expand Down Expand Up @@ -230,6 +230,6 @@ public String toString() {
'}';
}
}


}