Compare commits

..

No commits in common. "new_feature" and "main" have entirely different histories.

View File

@ -1,9 +1,4 @@
public class User { public class User {
private String username; private String username;
private String password; private String password;
public User(String username, String password) {
this.username = username;
this.password = password;
}
} }