[Mc4j-cvs] mc4j/src/org/mc4j/console ConnectionExplorer.java,1.2,1.3
Brought to you by:
ghinkl
From: Greg H. <gh...@us...> - 2004-03-31 03:31:52
|
Update of /cvsroot/mc4j/mc4j/src/org/mc4j/console In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25714/src/org/mc4j/console Modified Files: ConnectionExplorer.java Log Message: Don't synchronize the initial creation, this causes deadlock with some builds of netbeans platform. It doesn't break too much stuff if we accidentally create two instances and its pretty rare. Index: ConnectionExplorer.java =================================================================== RCS file: /cvsroot/mc4j/mc4j/src/org/mc4j/console/ConnectionExplorer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ConnectionExplorer.java 24 Feb 2004 03:40:47 -0000 1.2 --- ConnectionExplorer.java 31 Mar 2004 03:20:09 -0000 1.3 *************** *** 114,118 **** ! public static synchronized ConnectionExplorer getInstance() { // The ConnectionExplorer should've been loaded by the layer... // Try looking it up first before creating a new one. --- 114,118 ---- ! public static ConnectionExplorer getInstance() { // The ConnectionExplorer should've been loaded by the layer... // Try looking it up first before creating a new one. |