Changeset 885

Show
Ignore:
Timestamp:
10/02/06 22:29:06 (2 years ago)
Author:
alban
Message:

fix an exception when the connection is closing

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/source/org/kolaka/freecast/transport/BaseMinaPeerConnection.java

    r865 r885  
    164164         
    165165        public void close() throws IOException { 
     166    closeImpl(); 
     167     
     168    // close the session after the last message 
    166169                if (session != null) { 
    167170                        session.close(); 
    168171                } 
    169                 closeImpl(); 
    170172        } 
    171173