We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8e63ed commit c6fcbe0Copy full SHA for c6fcbe0
src/main/java/appscreen/UserAppScreenGateway.java
@@ -12,7 +12,7 @@ public class UserAppScreenGateway implements Username {
12
13
/**
14
* Create gateway between user and appscreen
15
- * @param userDataBase The user database
+ * @param userDatabase The user database
16
*/
17
public UserAppScreenGateway(UserDatabase userDatabase){
18
this.userDatabase = userDatabase;
@@ -24,7 +24,7 @@ public UserAppScreenGateway(UserDatabase userDatabase){
24
25
public void login(User user){
26
this.username = getUsername(user);
27
- this.userChats = userDataBase.getUserChats(this.username);
+ this.userChats = userDatabase.getUserChats(this.username);
28
AppScreenLoader appScreenLoader = new AppScreenLoader(this.username, this.userChats);
29
}
30
0 commit comments