return;
}
final String[] classes = new String[this.generatedClassList.size()];
this.generatedClassList.toArray( classes );
final CompilationResult result = this.compiler.compile( classes,
this.src,
this.packageStoreWrapper,
this.pkg.getPackageCompilationData().getClassLoader() );
//this will sort out the errors based on what class/file they happened in
if ( result.getErrors().length > 0 ) {
for ( int i = 0; i < result.getErrors().length; i++ ) {
final CompilationProblem err = result.getErrors()[i];
// System.out.println("Line: "+err.getStartLine());
// LineMappings maps = this.pkg.getPackageCompilationData().getLineMappings( err.getFileName().replace( '/', '.' ).substring( 0, err.getFileName().length() - 5 ) );
// int line = err.getStartLine() + maps.getStartLine() - maps.getOffset() -1;
// System.out.println("Map: "+line);