Skip to content
Snippets Groups Projects
Commit b2ba025e authored by mpriymak's avatar mpriymak
Browse files

conflicts solved

parent b61d5a73
Branches
Tags
1 merge request!25Master
...@@ -2,11 +2,7 @@ ...@@ -2,11 +2,7 @@
<project version="4"> <project version="4">
<component name="ProjectModuleManager"> <component name="ProjectModuleManager">
<modules> <modules>
<<<<<<< HEAD
<module fileurl="file://$PROJECT_DIR$/infinitymonkeys.iml" filepath="$PROJECT_DIR$/infinitymonkeys.iml" /> <module fileurl="file://$PROJECT_DIR$/infinitymonkeys.iml" filepath="$PROJECT_DIR$/infinitymonkeys.iml" />
=======
<module fileurl="file://$PROJECT_DIR$/comp90015-dsass2-infinitymonkeys-remaster.iml" filepath="$PROJECT_DIR$/comp90015-dsass2-infinitymonkeys-remaster.iml" />
>>>>>>> 37a6af2e6d36ab514d01a93dbd5be6538a2572c7
</modules> </modules>
</component> </component>
</project> </project>
\ No newline at end of file
This diff is collapsed.
...@@ -54,8 +54,6 @@ public class ChatScreen { ...@@ -54,8 +54,6 @@ public class ChatScreen {
frame.setVisible(true); frame.setVisible(true);
SwingUtilities.getRootPane(sendButton).setDefaultButton(sendButton); SwingUtilities.getRootPane(sendButton).setDefaultButton(sendButton);
<<<<<<< HEAD
=======
frame.addWindowListener(new WindowAdapter() frame.addWindowListener(new WindowAdapter()
{ {
...@@ -82,7 +80,6 @@ public class ChatScreen { ...@@ -82,7 +80,6 @@ public class ChatScreen {
} }
}); });
>>>>>>> mpriymak
} }
private void createUIComponents() { private void createUIComponents() {
......
...@@ -7,21 +7,12 @@ import remote.IDrawingUpdate; ...@@ -7,21 +7,12 @@ import remote.IDrawingUpdate;
public class User public class User
{ {
private String username; private String username;
<<<<<<< HEAD
private remote.IChatUpdate IChatUpdate; private remote.IChatUpdate IChatUpdate;
private remote.IDrawingUpdate IDrawingUpdate; private remote.IDrawingUpdate IDrawingUpdate;
private remote.IClientUpdate IClientUpdate; private remote.IClientUpdate IClientUpdate;
private boolean isAdmin; private boolean isAdmin;
public User(String username, remote.IChatUpdate IChatUpdate, remote.IClientUpdate IClientUpdate, remote.IDrawingUpdate IDrawingUpdate) public User(String username, remote.IChatUpdate IChatUpdate, remote.IClientUpdate IClientUpdate, remote.IDrawingUpdate IDrawingUpdate)
=======
private IChatUpdate IChatUpdate;
private IDrawingUpdate IDrawingUpdate;
private IClientUpdate IClientUpdate;
private boolean isAdmin;
public User(String username, IChatUpdate IChatUpdate, IClientUpdate IClientUpdate, IDrawingUpdate IDrawingUpdate)
>>>>>>> mpriymak
{ {
this.username = username; this.username = username;
this.IChatUpdate = IChatUpdate; this.IChatUpdate = IChatUpdate;
...@@ -50,16 +41,11 @@ public class User ...@@ -50,16 +41,11 @@ public class User
return this.IChatUpdate; return this.IChatUpdate;
} }
<<<<<<< HEAD
public remote.IClientUpdate getIClientUpdate() public remote.IClientUpdate getIClientUpdate()
{ {
return this.IClientUpdate; return this.IClientUpdate;
} }
public remote.IDrawingUpdate getIDrawingUpdate() { return this.IDrawingUpdate; } public remote.IDrawingUpdate getIDrawingUpdate() { return this.IDrawingUpdate; }
=======
public IDrawingUpdate getIDrawingUpdate() { return this.IDrawingUpdate; }
public IClientUpdate getIClientUpdate() { return this.IClientUpdate; }
>>>>>>> mpriymak
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment