Skip to content

Commit c6fcbe0

Browse files
committed
Fixed another typo
1 parent c8e63ed commit c6fcbe0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/appscreen/UserAppScreenGateway.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class UserAppScreenGateway implements Username {
1212

1313
/**
1414
* Create gateway between user and appscreen
15-
* @param userDataBase The user database
15+
* @param userDatabase The user database
1616
*/
1717
public UserAppScreenGateway(UserDatabase userDatabase){
1818
this.userDatabase = userDatabase;
@@ -24,7 +24,7 @@ public UserAppScreenGateway(UserDatabase userDatabase){
2424
*/
2525
public void login(User user){
2626
this.username = getUsername(user);
27-
this.userChats = userDataBase.getUserChats(this.username);
27+
this.userChats = userDatabase.getUserChats(this.username);
2828
AppScreenLoader appScreenLoader = new AppScreenLoader(this.username, this.userChats);
2929
}
3030

0 commit comments

Comments
 (0)