if ( didRepair )
{
// Check the rest of the model for other instances of this issue and repair (LiteralInspector only reports one usage at a time)
Report r = new Report();
LiteralInspector inspector = new LiteralInspector();
inspector.inspectModel( r, (OntModel)output );
for (StmtIterator itb = ((OntModel)output).getBaseModel().listStatements(); itb.hasNext();)
inspector.inspectStatement( r, itb.nextStatement() );
inspector.end( r );
if( r.model().size() > 0 )
{ // New items were found to report; analyse and doctor them
LiteralAnalysis litA = new LiteralAnalysis();
litA.analyse( r, output, config );