Ignore:
Timestamp:
10/06/20 13:12:31 (4 years ago)
Author:
bart
Message:

Fixes an issue with processing maxPower of a vote. Javadoc maven plugin now uses latest version.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/geniusweb/partiesserver/websocket/PartySocket.java

    r18 r21  
    1919import javax.websocket.server.ServerEndpoint;
    2020
    21 import com.fasterxml.jackson.core.JsonParseException;
    22 import com.fasterxml.jackson.databind.JsonMappingException;
    2321import com.fasterxml.jackson.databind.ObjectMapper;
    2422
     
    124122         *                      {@link Inform}
    125123         * @param session       the session. We already have this info.
     124         * @throws IOException if there is a socket/connection error, we can't parse
     125         *                     the received data, etc
    126126         */
    127127        @OnMessage
    128128        public void onMessage(String informmessage, Session session)
    129                         throws JsonParseException, JsonMappingException, IOException {
     129                        throws IOException {
    130130                if (this.session != session) {
    131131                        throw new IllegalStateException("Unexpected change of session ID");
Note: See TracChangeset for help on using the changeset viewer.