rolik55 / course-management-system

Undocumented constructor found JAVA-D1002
Documentation
Minor
1 occurrence in this check
20    private String profession;
21    private ArrayList<User> children;
22
23    public User(int id, String firstName, String lastName, int age, String profession, ArrayList<User> children) {24        this.id = id;25        this.firstName = firstName;26        this.lastName = lastName;27        this.age = age;28        this.profession = profession;29        this.children = children;30    }31
32    /**
33     * This function applies changes to User's name and returns it if the given User is a child of current User