abcData = IOUtils.toByteArray(abcStream);
assert abcData != null : "No ABC byte code.";
}
catch (Exception e)
{
final ICompilerProblem problem = new InternalCompilerProblem2(rootSource.getPath(), e, SUB_SYSTEM);
problems.add(problem);
}
finally
{
if (abcStream != null)
{
try
{
abcStream.close();
}
catch (IOException e)
{
final ICompilerProblem problem = new InternalCompilerProblem2(rootSource.getPath(), e, SUB_SYSTEM);
problems.add(problem);
}
}
}
}