log.info( "Cursor has been abandoned." );
close();
throw new OperationAbandonedException();
}
ClonedServerEntry tempResult = null;
outer: while ( wrapped.next() )
{
boolean accepted = true;
ServerEntry tempEntry = wrapped.get();
if ( tempEntry instanceof ClonedServerEntry )
{
tempResult = ( ClonedServerEntry ) tempEntry;
}
else
{
tempResult = new ClonedServerEntry( tempEntry );
}
/*
* O P T I M I Z A T I O N
* -----------------------