Skip to content

Commit 31ac556

Browse files
committed
Updated AppScreen's presenter to call openScreen
1 parent b20255b commit 31ac556

File tree

4 files changed

+3
-8
lines changed

4 files changed

+3
-8
lines changed

src/main/java/appscreen/AppScreenController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import testerEntities.*;
44

5-
public interface AppScreenController extends LoginSuccess{
5+
public interface AppScreenController{
66
Chat getChat(String chatID);
77

88
}

src/main/java/appscreen/AppScreenLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import testerEntities.*;
44
import java.util.ArrayList;
55

6-
public class AppScreenLoader implements LoginSuccess {
6+
public class AppScreenLoader implements AppScreenPresenter {
77

88
private final String username;
99
private final ArrayList<Chat> chats;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package appscreen;
22

33
public interface AppScreenPresenter {
4-
void displayAppScreen();
4+
void openScreen();
55
}

src/main/java/appscreen/LoginSuccess.java

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)