| Newsgroups |
gmane.network.spread.cvs |
| Message-ID |
<[email protected]> |
Author: jonathan
Date: 2006-03-02 13:55:00 -0500 (Thu, 02 Mar 2006)
New Revision: 329
Modified:
trunk/java/spread/SpreadConnection.java
Log:
Fix compile error because of uncaught InterruptedException in stopListener
Modified: trunk/java/spread/SpreadConnection.java
===================================================================
--- trunk/java/spread/SpreadConnection.java 2006-03-02 18:51:23 UTC (rev 328)
+++ trunk/java/spread/SpreadConnection.java 2006-03-02 18:55:00 UTC (rev 329)
@@ -16,23 +16,22 @@
* License.
*
* The Creators of Spread are:
- * Yair Amir, Michal Miskin-Amir, Jonathan Stanton.
+ * Yair Amir, Michal Miskin-Amir, Jonathan Stanton, John Schultz.
*
- * Copyright (C) 1993-2004 Spread Concepts LLC <[email protected]>
+ * Copyright (C) 1993-2006 Spread Concepts LLC <[email protected]>
*
* All Rights Reserved.
*
* Major Contributor(s):
* ---------------
+ * Ryan Caudy [email protected] - contributions to process groups.
* Cristina Nita-Rotaru [email protected] - group communication security.
- * Theo Schlossnagle [email protected] - Perl, skiplists, autoconf.
+ * Theo Schlossnagle [email protected] - Perl, autoconf, old skiplist.
* Dan Schoenblum [email protected] - Java interface.
- * John Schultz [email protected] - contribution to process group membership.
*
*/
-
package spread;
import java.net.*;
@@ -1479,8 +1478,12 @@
// Wait for the thread to die, to avoid inconsistencies.
////////////////////////////////////////////////////////
- listener.join();
-
+ try {
+ listener.join();
+ }
+ catch ( InterruptedException e ) {
+ // Ignore
+ }
// Clear the variable.
//////////////////////
listener = null;