Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Madhavan7 committed Dec 2, 2022
1 parent dd97bbc commit 8d3341b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/**
* User_search_IA.UserPresenter makes us implement showProfile to invert the dependency
*/
public class UserPresenterClass implements UserPresenter{
public class UserPresenterClass implements UserPresenter {
@Override
public String showProfile(String username) {
// setting up access to the database of users:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void getUserCredentials(){
}

public static void main(String[] args){
Database testDB = new UserDatabase(new File("newAccounts2"));
Database testDB = new UserDatabase(new File("newAccounts23"));
UserLoginInteractor2 userLoginInteractor2 = new UserLoginInteractor2(testDB, new UserChatsPresenter());
UserLoginPresenter userLoginPresenter = new UserLoginPresenter(testDB, userLoginInteractor2);
UserVerificationOutputView loginUI = new UserLoginUI(userLoginPresenter);
Expand Down

0 comments on commit 8d3341b

Please sign in to comment.