source
793794795796797798799800801802803
sourceFileReader = sourceFileSpec.createReader(); } catch (FileNotFoundException e) { ICompilerProblem problem = new MXMLInvalidSourceAttributeProblem(sourceAttribute, resolvedSourcePath); addProblem(problem); return null; } String text; try
830831832833834835836837838839840
File file = new File(resolvedSourcePath); if (!file.exists()) { ICompilerProblem problem = new MXMLInvalidSourceAttributeProblem(sourceAttribute, resolvedSourcePath); addProblem(problem); return null; } Workspace workspace = getWorkspace();