Ive downloaded CVS HEAD some minutes ago.
 
First off all, I don't get build ( "bin/build.bat jar" ) working until I delete the JDO folder... Is some .JAR missing? I had put j2ee.jar into lib.
The other is the method close in PersistenceBrokerHandle, that should be corrected to
 
    public boolean close()
    {
        if (getDelegate() == null) return true;
        try
        {
            PersistenceBrokerThreadMapping.unsetCurrentPersistenceBroker(getPBKey(), this);
            super.close();
        }
        finally
        {
            /*
            here we destroy the handle. set the
            underlying PB instance 'null', thus it's not
            possible to corrupt a closed PB instance.
            */
            setDelegate(null);
        }
        return true;
    }
 
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.515 / Virus Database: 313 - Release Date: 1/9/2003

Attachment: smime.p7s
Description: S/MIME cryptographic signature

Reply via email to