Compare commits

..

No commits in common. "698c2faaa86fa861411573f076c97be5ae5a1886" and "90fc41f7667b6e586829c866cedfe6dbd188ee89" have entirely different histories.

4 changed files with 0 additions and 27 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -1,14 +0,0 @@
public class Message {
private String msg = null;
public void setmsg(String msg)
{
this.msg = msg;
}
public String getmsg()
{
return msg;
}
}

View file

@ -1,13 +0,0 @@
public class User {
private String pseudo = null;
public void setpseudo(String pseudo)
{
this.pseudo = pseudo;
}
public String getpseudo()
{
return pseudo;
}
}