Skip to content

Commit 8d3341b

Browse files
committed
Minor changes
1 parent dd97bbc commit 8d3341b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/interface_adapters/User_search_IA/UserPresenterClass.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* User_search_IA.UserPresenter makes us implement showProfile to invert the dependency
88
*/
9-
public class UserPresenterClass implements UserPresenter{
9+
public class UserPresenterClass implements UserPresenter {
1010
@Override
1111
public String showProfile(String username) {
1212
// setting up access to the database of users:

src/main/java/screens/user_registration_screen/UserRegistrationUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public void getUserCredentials(){
8686
}
8787

8888
public static void main(String[] args){
89-
Database testDB = new UserDatabase(new File("newAccounts2"));
89+
Database testDB = new UserDatabase(new File("newAccounts23"));
9090
UserLoginInteractor2 userLoginInteractor2 = new UserLoginInteractor2(testDB, new UserChatsPresenter());
9191
UserLoginPresenter userLoginPresenter = new UserLoginPresenter(testDB, userLoginInteractor2);
9292
UserVerificationOutputView loginUI = new UserLoginUI(userLoginPresenter);

0 commit comments

Comments
 (0)