412413414415416417418419420421422
return; } try { FileOutputStream fos = new FileOutputStream(currTest.getFilename()); result.writeTo(fos); fos.flush(); fos.close(); } catch (FileNotFoundException e) { log.error("File not found exception while saving", e); if (errorHandler != null)
431432433434435436437438439440441