+ (result != null ? (result.getClass().getName() + ':' + result) : "null");
}
else
{
ByteArrayOutputStream bOut = new ByteArrayOutputStream();
SerializeAdapter adpt = adapters[i];
try
{
if ( runs == 1 || runs == 3 )
{
DeflaterOutputStream sOut = new GZIPOutputStream( bOut, EJConstants.BUFFERED_STREAM_SIZE )
{
{
def.setLevel( EJConstants.DEFAULT_COMPRESSION_LEVEL );
}
};
adpt.write( new ObjectBean(), sOut );
sOut.finish();
sOut.close();
}
else
{
adpt.write( new ObjectBean(), bOut );
}
msgs[1] = String.valueOf( bOut.size() );
}
catch ( Exception e )
{