try {
for(ContentPlugin contentPlugin : brjs.plugins().contentPlugins("text/javascript")) {
List<String> requestPaths = (contentPath.formName.equals(DEV_BUNDLE_REQUEST)) ? contentPlugin.getValidDevContentPaths(bundleSet) :
contentPlugin.getValidProdContentPaths(bundleSet);
ContentPathParser contentPathParser = contentPlugin.getContentPathParser();
for(String requestPath : requestPaths) {
ParsedContentPath parsedContentPath = contentPathParser.parse(requestPath);
inputSources.add( new InputSource(parsedContentPath, contentPlugin, bundleSet, contentAccessor, version) );
}
}
}
catch (MalformedRequestException e) {