Skip to content

Commit

Permalink
#18
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigoprestesmachado committed Nov 23, 2016
1 parent 84ddb62 commit a58331a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/edu/ifrs/soundChat/model/InputMessage.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @license
* Copyright 2015, Rodrigo Prestes Machado
* Copyright 2016, Rodrigo Prestes Machado
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/edu/ifrs/soundChat/model/OutputMessage.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @license
* Copyright 2015, Rodrigo Prestes Machado
* Copyright 2016, Rodrigo Prestes Machado
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/edu/ifrs/soundChat/model/TextMessage.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @license
* Copyright 2015, Rodrigo Prestes Machado
* Copyright 2016, Rodrigo Prestes Machado
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/edu/ifrs/soundChat/model/Type.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @license
* Copyright 2015, Rodrigo Prestes Machado
* Copyright 2016, Rodrigo Prestes Machado
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/edu/ifrs/soundChat/model/User.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @license
* Copyright 2015, Rodrigo Prestes Machado
* Copyright 2016, Rodrigo Prestes Machado
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions src/edu/ifrs/soundChat/ws/SoundChatWS.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @license
* Copyright 2015, Rodrigo Prestes Machado
* Copyright 2016, Rodrigo Prestes Machado
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -126,7 +126,7 @@ public void onClose(Session session) {
users.remove(user);

OutputMessage out = new OutputMessage();
out.setType("ackConnect");
out.setType("ACK_CONNECT");
out.addData("size", String.valueOf(users.size()));
out.addData("users", gson.toJson(users));

Expand Down

0 comments on commit a58331a

Please sign in to comment.