[Mc4j-cvs] mc4j/src/org/mc4j/console ConnectionExplorer.java,1.3,1.4
Brought to you by:
ghinkl
From: Greg H. <gh...@us...> - 2004-04-07 03:26:07
|
Update of /cvsroot/mc4j/mc4j/src/org/mc4j/console In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18326/src/org/mc4j/console Modified Files: ConnectionExplorer.java Log Message: Don't let a load failure on one connection break the connections.db loading process for other connections. Index: ConnectionExplorer.java =================================================================== RCS file: /cvsroot/mc4j/mc4j/src/org/mc4j/console/ConnectionExplorer.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ConnectionExplorer.java 31 Mar 2004 03:20:09 -0000 1.3 --- ConnectionExplorer.java 7 Apr 2004 03:13:08 -0000 1.4 *************** *** 83,88 **** } }); managementNode.loadConnections("MC4J"); ! //open(); //requestActive(); --- 83,91 ---- } }); + try { managementNode.loadConnections("MC4J"); ! } catch (Exception e) { ! ErrorManager.getDefault().notify(e); ! } //open(); //requestActive(); |