Hello! I'm benniger and I don't understand why Eclipse says that there are a error in the default constructor and that there is not a return type for the other constructor. thanks you
package fuente; public class User { public static void main(String[] args) { final String account; final String password; public User(){ } public User(String account, String password) { this.account=account; this.password=password; } private void setAccount(String newAccount) { account=newAccount; } private void setPassword(String newPassword) { password=newPassword; } } }