:               // feebly try to prevent concurrent reentry problems
:               IndexWriter w = writer;
:               w = null;
:                 try {
:                     w.close();

Just to clarify for the folks at home, I'm pretty sure you ment...

                IndexWriter w = writer;
                writer = null;
                  try {
                      w.close();

...correct?

-Hoss


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to