207208209210211212213214215216
{ inStrm = swcSource.createInputStream(); } catch (IOException e) { problems.add(new EmbedUnableToReadSourceProblem(e, swcSource.getPath())); } return inStrm; }
222223224225226227228229230231
{ inStrm = fileSpec.createInputStream(); } catch (IOException e) { problems.add(new EmbedUnableToReadSourceProblem(e, fileSpec.getPath())); } return inStrm; }
247248249250251252253254255256257
{ bytes = IOUtils.toByteArray(inStrm); } catch (IOException e) { problems.add(new EmbedUnableToReadSourceProblem(e, source)); } finally { if (inStrm != null) {