private Set<String> calculateContentPathsForThemesAndResources(AssetContainer container, String themeRequestName, String resourcesRequestName, String... requestArgs) throws MalformedTokenException, ConfigException
{
Set<String> contentPaths = new LinkedHashSet<>();
for (ResourcesAssetLocation assetLocation : getResourceAssetLocations(container)){
File assetLocationDir = assetLocation.dir();
FileInfo assetLocationDirInfo = brjs.getFileInfo(assetLocationDir);
if (assetLocationDirInfo.isDirectory()){
for (File file : assetLocationDirInfo.nestedFiles()) {
if (!fileIgnoredByBrjsConfig(file)) {
createRequestForNestedDir(container, themeRequestName, resourcesRequestName, contentPaths, assetLocation, file, requestArgs);
}
}
}